aboutsummaryrefslogtreecommitdiff
path: root/base/vim/ftplugin
diff options
context:
space:
mode:
authorAdam Hovorka <[email protected]>2019-10-12 22:17:27 -0600
committerAdam Hovorka <[email protected]>2019-10-12 22:17:27 -0600
commitf0d8a2304e75c8c4c30afb18da5803e2ceddb122 (patch)
treeeb67abe060d42219417a1e4b0d8b7ef4b4bc88a2 /base/vim/ftplugin
parent7ebb6f05eecb2369dbc43e499cd4277f13e5c5c5 (diff)
Sync misc changes 20191012
Diffstat (limited to 'base/vim/ftplugin')
-rw-r--r--base/vim/ftplugin/toml.vim21
1 files changed, 21 insertions, 0 deletions
diff --git a/base/vim/ftplugin/toml.vim b/base/vim/ftplugin/toml.vim
new file mode 100644
index 0000000..9075e88
--- /dev/null
+++ b/base/vim/ftplugin/toml.vim
@@ -0,0 +1,21 @@
+" File: ftplugin/toml.vim
+" Author: Kevin Ballard <[email protected]>
+" Description: FileType Plugin for Toml
+" Last Change: Feb 12, 2019
+
+if exists('b:did_ftplugin')
+ finish
+endif
+let b:did_ftplugin = 1
+
+let s:save_cpo = &cpo
+set cpo&vim
+let b:undo_ftplugin = 'setlocal commentstring< comments<'
+
+setlocal commentstring=#\ %s
+setlocal comments=:#
+
+let &cpo = s:save_cpo
+unlet s:save_cpo
+
+" vim: set et sw=4 ts=4: