summaryrefslogtreecommitdiff
path: root/general/functions.vim
blob: 31297c363f8ca1f6d3d65f54951c3adb54e1a30c (plain)
1
2
3
4
5
6
7
8
9
10
11
" Turn spellcheck on for markdown files
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()
augroup END