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