vdf.vim 311 B

123456789101112131415
  1. " Vim filetype plugin
  2. " Language: Valve Data Format
  3. " Maintainer: ObserverOfTime <chronobserver@disroot.org>
  4. " Last Change: 2022 Sep 15
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setl comments=:// commentstring=//\ %s
  10. setl foldmethod=syntax
  11. let b:undo_ftplugin = 'setl com< cms< fdm<'