LunarVim/general/functions.vim

12 lines
287 B
VimL
Raw Normal View History

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