LunarVim.LunarVim/general/functions.vim

7 lines
152 B
VimL
Raw Normal View History

2020-08-07 23:20:01 -04:00
" Random Useful Functions
2020-05-10 16:20:02 -04:00
" Turn spellcheck on for markdown files
2020-05-10 23:27:51 -04:00
augroup auto_spellcheck
autocmd BufNewFile,BufRead *.md setlocal spell
augroup END