dotfiles/vim/ftplugin/markdown.vim
Alicia Sykes afb55def37 V0.01
2021-01-31 20:45:12 +00:00

19 lines
343 B
VimL

if exists('b:did_ftplugin')
finish
endif
let b:did_ftplugin = 1
setlocal spell
setlocal expandtab
setlocal tabstop=4
setlocal shiftwidth=4
setlocal textwidth=99
" spellcheck
setlocal spell
" generate TOC quicker
nmap <buffer> <silent> <Leader>toc :GenTocGFM<CR>
let b:ale_fixers = ['trim_whitespace', 'remove_trailing_lines', 'prettier']