summaryrefslogtreecommitdiff
path: root/runtime/ftplugin/openvpn.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/ftplugin/openvpn.vim')
-rw-r--r--runtime/ftplugin/openvpn.vim14
1 files changed, 14 insertions, 0 deletions
diff --git a/runtime/ftplugin/openvpn.vim b/runtime/ftplugin/openvpn.vim
new file mode 100644
index 000000000..56c0f25b3
--- /dev/null
+++ b/runtime/ftplugin/openvpn.vim
@@ -0,0 +1,14 @@
+" Vim filetype plugin
+" Language: OpenVPN
+" Maintainer: ObserverOfTime <chronobserver@disroot.org>
+" Last Change: 2022 Oct 16
+
+if exists('b:did_ftplugin')
+ finish
+endif
+let b:did_ftplugin = 1
+
+setlocal iskeyword+=-,.,/
+setlocal comments=:#,:; commentstring=#%s
+
+let b:undo_ftplugin = 'setl isk< com< cms<'