diff options
author | Teddy Wing | 2019-05-17 20:53:34 +0200 |
---|---|---|
committer | Teddy Wing | 2019-05-17 20:53:34 +0200 |
commit | 17f0e0818c53d5ba2aed76b4330378c89d626162 (patch) | |
tree | 92d6cd84994212ba2019e7244e9c0b0f8074a53f /ftplugin/gitcommit.vim | |
parent | 7d2e4fb741f9d99186bb0dd740f26cc853f69d7d (diff) | |
download | dotvim-17f0e0818c53d5ba2aed76b4330378c89d626162.tar.bz2 |
ftplugin/gitcommit.vim: Turn on spell checking in Git commits
Diffstat (limited to 'ftplugin/gitcommit.vim')
-rw-r--r-- | ftplugin/gitcommit.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ftplugin/gitcommit.vim b/ftplugin/gitcommit.vim index 5d995b2..05cf30e 100644 --- a/ftplugin/gitcommit.vim +++ b/ftplugin/gitcommit.vim @@ -10,5 +10,8 @@ setlocal shiftwidth=2 setlocal textwidth=72 +setlocal spell + + " Make bulleted lists with '*' not start wrapped lines with '*' setlocal comments-=mb:* comments+=fb:* |