You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
661 B
20 lines
661 B
9 years ago
|
#!/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
|
||
|
## <ctrl>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
|