LunarVim/general/functions.vim
2020-05-10 19:23:44 -04:00

11 lines
287 B
VimL

" Turn spellcheck on for markdown files
" augroup auto_spellcheck
" autocmd BufNewFile,BufRead *.md setlocal spell
" augroup END
" Remove trailing whitespaces automatically before save
" augroup strip_ws
" autocmd BufWritePre * call utils#stripTrailingWhitespaces()
" augroup END