diff options
| author | Robert Günzler <r@gnzler.io> | 2021-02-20 21:27:26 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-04-26 02:09:43 +0200 |
| commit | 1996ef15613f2d4773017128bba1a719a1b63a19 (patch) | |
| tree | aa291b56947f0f710c96c62758990de3b2939bba /.vim/after/ftplugin/markdown.vim | |
| parent | 30451238df36d238fea816f01ca987853c6562a5 (diff) | |
Move to lua based vimrc
Diffstat (limited to '.vim/after/ftplugin/markdown.vim')
| -rw-r--r-- | .vim/after/ftplugin/markdown.vim | 27 |
1 files changed, 0 insertions, 27 deletions
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(<bang>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 |