summary refs log tree commit diff
path: root/.vim/after/ftplugin/markdown.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/after/ftplugin/markdown.vim')
-rw-r--r--.vim/after/ftplugin/markdown.vim27
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