15 lines
431 B
VimL
15 lines
431 B
VimL
set foldlevelstart=10 " open most folds by default
|
|
"
|
|
" ==================================================
|
|
" XML folding
|
|
" ==================================================
|
|
let g:xml_syntax_folding=1
|
|
au FileType xml setlocal foldmethod=syntax
|
|
|
|
" ==================================================
|
|
" JSON folding
|
|
" ==================================================
|
|
au FileType json setlocal foldmethod=syntax
|
|
|
|
" vim:set et sw=2:
|