diff options
Diffstat (limited to 'general/functions.vim')
-rw-r--r-- | general/functions.vim | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/general/functions.vim b/general/functions.vim index a708c61e..58db6b1f 100644 --- a/general/functions.vim +++ b/general/functions.vim @@ -1,11 +1,9 @@ " Turn spellcheck on for markdown files -" augroup auto_spellcheck - " autocmd BufNewFile,BufRead *.md setlocal spell -" augroup END +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() +" autocmd BufWritePre * call utils#stripTrailingWhitespaces() " augroup END - - |