Vundle is a Vim plugin manager. It will help you keep track of the plugins you install with the ability of updating them as you go about adding more tools to vim that'll help you be more productive.
https://github.com/VundleVim/Vundle.vim
-
Go through the steps in the
README.MDon the Vundle repo. https://github.com/VundleVim/Vundle.vim/blob/master/README.md -
After cloning Vundle into your
~/.vimdirectory, and copying the mentioned code into the top of your~/.vimrcfile. Search the web for plugins that you might be interested in. Here is a great link to some plugins you might be interested in adding: http://benmccormick.org/2014/07/21/learning-vim-in-2014-getting-more-from-vim-with-plugins/ -
Remember, that all you need to do to add more plugins is to go into your
~/.vimrcfile and add a plugin link like this:Plugin '[repo or site of plugin]'. For example, to add the NerdTree plugin, we modify~/.vimrcto have a line that states:Plugin 'https://github.com/scrooloose/nerdtree'This adds a link to NerdTree's Github repo. To install NerdTree, all you have to do is go into Vim and write:PluginInstalland Vundle will open up to install all the plugins you have setup in your~/.vimrcfile.
Don't forget to look over the Vundle documentation if anything is unclear.