38bcefdf6e
Source: http://stackoverflow.com/questions/1691060/vim-set-spell-in-file-git-commit-editmsg
8 lines
116 B
VimL
8 lines
116 B
VimL
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
let b:did_ftplugin = 1 " Don't load twice in one buffer
|
|
|
|
setlocal spell
|