Automatic formatting is annoying and trailing whitespace is nothing I want ever in my files.
12 lines
274 B
VimL
12 lines
274 B
VimL
" Turn on line-wrapping
|
|
setlocal wrap
|
|
|
|
" Fold by sections
|
|
function! MdSectionFold()
|
|
let depth = len(matchstr(getline(v:lnum), '^#*'))
|
|
return depth ? ">" . depth : "="
|
|
endfunction
|
|
setlocal foldmethod=expr foldexpr=MdSectionFold()
|
|
" Unfold everything when opening
|
|
normal zR
|