functions.vim 275 B

1234567891011
  1. " Turn spellcheck on for markdown files
  2. augroup auto_spellcheck
  3. autocmd BufNewFile,BufRead *.md setlocal spell
  4. augroup END
  5. " Remove trailing whitespaces automatically before save
  6. augroup strip_ws
  7. autocmd BufWritePre * call utils#stripTrailingWhitespaces()
  8. augroup END