go.vim 365 B

12345678910111213141516171819
  1. " Vim filetype plugin file
  2. " Language: Go
  3. " Maintainer: David Barnett (https://github.com/google/vim-ft-go)
  4. " Last Change: 2014 Aug 16
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal formatoptions-=t
  10. setlocal comments=s1:/*,mb:*,ex:*/,://
  11. setlocal commentstring=//\ %s
  12. let b:undo_ftplugin = 'setl fo< com< cms<'
  13. " vim: sw=2 sts=2 et