gitattributes.vim 278 B

1234567891011121314
  1. " Vim filetype plugin
  2. " Language: git attributes
  3. " Maintainer: ObserverOfTime <chronobserver@disroot.org>
  4. " Last Change: 2022 Sep 08
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setl comments=:# commentstring=#\ %s
  10. let b:undo_ftplugin = 'setl com< cms<'