aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/gitcommit.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/gitcommit.vim')
-rw-r--r--vim/after/ftplugin/gitcommit.vim14
1 files changed, 14 insertions, 0 deletions
diff --git a/vim/after/ftplugin/gitcommit.vim b/vim/after/ftplugin/gitcommit.vim
new file mode 100644
index 00000000..8c0d3d17
--- /dev/null
+++ b/vim/after/ftplugin/gitcommit.vim
@@ -0,0 +1,14 @@
+" Extra configuration for 'gitcommit' filetypes
+if &compatible || v:version < 700 || exists('b:did_ftplugin_gitcommit')
+ finish
+endif
+let b:did_ftplugin_gitcommit = 1
+let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|unlet b:did_ftplugin_gitcommit'
+
+" Make angle brackets behave like mail quotes
+setlocal comments+=n:>
+setlocal formatoptions+=or
+let b:undo_ftplugin = b:undo_ftplugin
+ \ . '|setlocal comments<'
+ \ . '|setlocal formatoptions<'