11 lines
260 B
VimL
11 lines
260 B
VimL
" Snippets ===============================================
|
|
iabbrev <buffer> initmodeline # vim: set ft=snippets ff=unix:
|
|
|
|
setlocal foldmethod=marker
|
|
|
|
" Fold by default
|
|
setlocal foldlevelstart=0
|
|
setlocal foldmarker=<<<{{{,}}}>>>
|
|
|
|
" vim: set ff=unix ft=vim:
|