gomod.vim 384 B

1234567891011121314151617
  1. " Vim filetype plugin file
  2. " Language: go module file
  3. " Maintainer: YU YUK KUEN <yukkuen.yu719@gmail.com>
  4. " Last Change: 2024-06-21
  5. " 2024 Jul 16 by Vim Project (noexpandtab)
  6. if exists('b:did_ftplugin')
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. setlocal noexpandtab
  11. setlocal formatoptions-=t formatoptions-=c
  12. setlocal commentstring=//\ %s
  13. let b:undo_ftplugin = 'setl et< fo< cms<'