aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-09-17 21:21:20 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-09-17 21:21:20 +1200
commit24ceebd754b26e2762371de25163e15841568259 (patch)
tree694168219e24567eff0a4e7071d820e6b1ec134f /vim/autoload
parentMerge branch 'release/v10.8.0' into develop (diff)
downloaddotfiles-24ceebd754b26e2762371de25163e15841568259.tar.gz
dotfiles-24ceebd754b26e2762371de25163e15841568259.zip
Move plugin-dependent config to vim/after files
Diffstat (limited to 'vim/autoload')
-rw-r--r--vim/autoload/plugin.vim7
1 files changed, 0 insertions, 7 deletions
diff --git a/vim/autoload/plugin.vim b/vim/autoload/plugin.vim
deleted file mode 100644
index 629a4367..00000000
--- a/vim/autoload/plugin.vim
+++ /dev/null
@@ -1,7 +0,0 @@
-" Check whether plugins are enabled and a specific named plugin (excluding
-" extension .vim) is available somewhere within 'runtimepath'
-"
-function! plugin#Ready(name) abort
- return &loadplugins
- \ && globpath(&runtimepath, 'plugin/'.a:name.'.vim') !=# ''
-endfunction