This branch 4.0 is an attempt to replace Vundle with Vim Plug
The main reason being able to install/update/remove of the plugins asynchronously
.vimrc has included .vim_plug.unplug which has the UnPlug command
so that the user can remove unwanted plugins based from the default list, just like Vundle
For example, to replace Syntastic with ALE
In $HOME/.vimrc.bundles.local
Plug 'w0rp/ALE'
UnPlug 'syntastic'
The user is to run
vim +PlugInstall +PlugClean!
Contributions are welcome!