Vim + Plugin Manager = VPM
VPM is a plugin manager for vim8 new native package loading implemented in go. List, install and remove your vim plugins.
git clone https://github.com/Waasi/vpm.git
make install-macos
git clone https://github.com/Waasi/vpm.git
make install-linux
First initialize your plugins container with:
vpm init
Then look for the https url of your plugin in github and install it with:
vpm add <plugin_url>
To remove a plugin run:
vpm remove <plugin_name>
To list all installed plugins run:
vpm list
In this example we will install nerdtree vim plugin.
- Install the plugin:
> vpm add https://github.com/scrooloose/nerdtree.git
> added plugin nerdtree
- See if the plugin was installed:
> vpm list
> nerdtree
- Remove the plugin:
> vpm remove nerdtree
> removed plugin nerdtree
- Fork it ( https://github.com/[my-github-username]/vpm/fork )
- Create your feature branch (git checkout -b feature/my_new_feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request