]>
Commit | Line | Data |
---|---|---|
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 | |
6 | if (exists("b:did_ftplugin")) | |
7 | finish | |
8 | endif | |
9 | let b:did_ftplugin = 1 | |
10 | ||
11 | setlocal formatoptions-=t formatoptions+=croql | |
12 | setlocal comments=:#,:; commentstring=;\ %s | |
13 | ||
14 | let b:undo_ftplugin = "setl fo< com< cms<" |