openvpn.vim (379B)
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 7 if exists('b:did_ftplugin') 8 finish 9 endif 10 let b:did_ftplugin = 1 11 12 setlocal iskeyword+=-,.,/ 13 setlocal comments=:#,:; commentstring=#\ %s 14 15 let b:undo_ftplugin = 'setl isk< com< cms<'