You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
VimL
15 lines
349 B
VimL
" Vim filetype plugin
|
|
" Language: git config file
|
|
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
|
|
|
|
" Only do this when not done yet for this buffer
|
|
if (exists("b:did_ftplugin"))
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal formatoptions-=t formatoptions+=croql
|
|
setlocal comments=:#,:; commentstring=;\ %s
|
|
|
|
let b:undo_ftplugin = "setl fo< com< cms<"
|