diff options
author | Teddy Wing | 2014-05-23 20:42:28 -0400 |
---|---|---|
committer | Teddy Wing | 2014-05-23 20:42:28 -0400 |
commit | 3dcafa5c60197dafb40ab837d761b71bc4101c1a (patch) | |
tree | cf90cdd10b50285e1a3013963a70e3c0389e2a71 | |
parent | fc4200274cbc0dd8b478c7ff567252aed9bf0106 (diff) | |
download | dotvim-3dcafa5c60197dafb40ab837d761b71bc4101c1a.tar.bz2 |
ftplugin/gitcommit: set textwidth=72
Actually enjoyed the textwidth setting of the default gitcommit
ftplugin so bringing that over to my custom one.
-rw-r--r-- | ftplugin/gitcommit.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftplugin/gitcommit.vim b/ftplugin/gitcommit.vim index fdffb20..c12287a 100644 --- a/ftplugin/gitcommit.vim +++ b/ftplugin/gitcommit.vim @@ -1,6 +1,10 @@ " Git commit message settings +" Indentation setlocal expandtab setlocal tabstop=2 setlocal softtabstop=2 setlocal shiftwidth=2 + + +setlocal textwidth=72 |