This commit is contained in:
2026-01-31 20:55:11 -05:00
parent 15b75b7f45
commit d212433067

View File

@@ -12,10 +12,3 @@ setlocal autoindent
setlocal shiftwidth=2
setlocal tabstop=2
setlocal expandtab
function! MarkdownFold()
if getline(v:lnum) =~ '^#'
return '>' . (strlen(matchstr(getline(v:lnum), '^#*')) + 1)
endif
return '='
endfunction