openvpn.vim 307 B

123456789101112131415
  1. " Vim filetype plugin
  2. " Language: OpenVPN
  3. " Maintainer: ObserverOfTime <chronobserver@disroot.org>
  4. " Last Change: 2022 Oct 16
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal iskeyword+=-,.,/
  10. setlocal comments=:#,:; commentstring=#%s
  11. let b:undo_ftplugin = 'setl isk< com< cms<'