openvpn.vim 379 B

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