Removing Vim Plugins - mattjmorrison/dotfiles GitHub Wiki
Removing Plugins From Default Distribution
If you would like Vim to not load any/all of the plugins that currently exist you can create a file named custom-configs/custom-init.vim
. In there you can specify an array of plugins to exclude. For example if you did not want to include easy-align
in your custom-init.vim
you would add the following line.
let g:exclude = ["easy-align.vim"]
this array can contain the name of any file in vim/plugin-configs