Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 703 Bytes

README.vim_plug.md

File metadata and controls

21 lines (16 loc) · 703 Bytes

Background

This branch feature/vim-plug 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!