LunarVim.LunarVim/general/functions.vim

12 lines
287 B
VimL
Raw Normal View History

2020-05-10 16:20:02 -04:00
" Turn spellcheck on for markdown files
2020-05-10 19:23:44 -04:00
" augroup auto_spellcheck
" autocmd BufNewFile,BufRead *.md setlocal spell
" augroup END
2020-05-10 16:20:02 -04:00
" Remove trailing whitespaces automatically before save
2020-05-10 19:23:44 -04:00
" augroup strip_ws
" autocmd BufWritePre * call utils#stripTrailingWhitespaces()
" augroup END
2020-05-10 16:20:02 -04:00
2020-05-08 22:12:01 -04:00