]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/ftplugin/gitconfig.vim
Turn off the blur
[rbdr/dotfiles] / vim / ftplugin / gitconfig.vim
CommitLineData
0d23b6e5
BB
1" Vim filetype plugin
2" Language: git config file
3" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
4
5" Only do this when not done yet for this buffer
6if (exists("b:did_ftplugin"))
7 finish
8endif
9let b:did_ftplugin = 1
10
11setlocal formatoptions-=t formatoptions+=croql
12setlocal comments=:#,:; commentstring=;\ %s
13
14let b:undo_ftplugin = "setl fo< com< cms<"