gitconfig.vim 376 B

12345678910111213141516
  1. " Vim filetype plugin
  2. " Language: git config file
  3. " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
  4. " Last Change: 2009 Dec 24
  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. setlocal formatoptions-=t formatoptions+=croql
  11. setlocal comments=:#,:; commentstring=;\ %s
  12. let b:undo_ftplugin = "setl fo< com< cms<"