From 1996ef15613f2d4773017128bba1a719a1b63a19 Mon Sep 17 00:00:00 2001 From: Robert Günzler Date: Sat, 20 Feb 2021 21:27:26 +0100 Subject: Move to lua based vimrc --- .vim/after/ftplugin/markdown.vim | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .vim/after/ftplugin/markdown.vim (limited to '.vim/after/ftplugin/markdown.vim') diff --git a/.vim/after/ftplugin/markdown.vim b/.vim/after/ftplugin/markdown.vim deleted file mode 100644 index 0d42ff0..0000000 --- a/.vim/after/ftplugin/markdown.vim +++ /dev/null @@ -1,27 +0,0 @@ -setlocal foldlevel=1 - -if exists('g:loaded_lexima') - let g:lexima_enable_space_rules=0 -endif - -function! s:markdown_underline(bang) - call append(line('.'), substitute(getline('.'), '.', (a:bang ? '-' : '='), 'g')) -endfunction -command! -nargs=0 -bang Underline call s:markdown_underline(0) - -if exists('g:loaded_neomake') - let g:neomake_markdown_shiba_maker = { - \ 'exe': 'shiba', - \ 'args': ['--detach', '%:p'], - \ 'append_file': 0, - \ } - let g:neomake_markdown_enabled_makers = [] -endif - -augroup Markdown - au! - " au FileType markdown NeomakeDisableBuffer - - " Make vim-markdown-folding ignore frontmatter blocks - au BufNewFile,BufRead markdown syntax match Comment /\%^---\_.\{-}---$/ -augroup END -- cgit 1.4.1