aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/gitcommit.vim
blob: d64c7f6eba742eec5aab65a0bd2f899367911624 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
" 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< formatoptions<'