aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/matchit.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-01 23:51:04 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-01 23:51:04 +1200
commit5a25d075ad3f26bcdc14e39b75c1f893fcc79eef (patch)
tree242ea3852d4c2bc8adcbbab2f487140657077427 /vim/plugin/matchit.vim
parentRemove custom digraphs (diff)
downloaddotfiles-5a25d075ad3f26bcdc14e39b75c1f893fcc79eef.tar.gz
dotfiles-5a25d075ad3f26bcdc14e39b75c1f893fcc79eef.zip
Move plugin-specific settings into ~/.vim/plugin
Makes way more sense--these files won't get loaded by definition unless plugins are enabled, and dist.vim will still be in time to stop the distributed plugins from loading.
Diffstat (limited to 'vim/plugin/matchit.vim')
-rw-r--r--vim/plugin/matchit.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/plugin/matchit.vim b/vim/plugin/matchit.vim
new file mode 100644
index 00000000..31e6e37d
--- /dev/null
+++ b/vim/plugin/matchit.vim
@@ -0,0 +1,6 @@
+" Get matchit.vim, one way or another
+if has('packages') && !has('nvim')
+ packadd! matchit
+else
+ silent! runtime macros/matchit.vim
+endif