#!/bin/bash git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim #after installing vundle, we'll have to add some shit to .vimrc, see the github page #after putting a plugin in .vimrc, we can do ## :PluginInstall to install it ## :PluginClean to remove it #too add plugins.. just throw the git repo in .vimrc Plugin 'scrooloose/nerdtree' #some notes for NERDTree ## :NERDTree starts the browser ## ww swaps between browser and current tab ## gt next tab ## gT previous tab ## t open file in new tab and change to it ## T open file in new tab and stay in current ## q quit NERDTree ## I displays hidden files ## s open file in vertical split ## i open file in horizontal split