aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/text.vim
blob: 1533320213b39080ec53ae1051e5205a63427743 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
" Spellcheck documents by default
if has('syntax')
  setlocal spell

  " Undo
  if !exists('b:undo_ftplugin')
    let b:undo_ftplugin = ''
  endif
  let b:undo_ftplugin = b:undo_ftplugin
        \ . '|setlocal spell<'
endif