blob: 22b1c27b760e775051150a8d849d3353945fba96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
" Extra configuration for 'text' filetypes
if &compatible || v:version < 700 || exists('b:did_ftplugin_after')
finish
endif
if &filetype !=# 'text'
finish
endif
let b:did_ftplugin_after = 1
let b:undo_ftplugin = b:undo_ftplugin
\ . '|unlet b:did_ftplugin_after'
" Spellcheck documents
setlocal spell
let b:undo_ftplugin = b:undo_ftplugin
\ . '|setlocal spell<'
|