Created
July 13, 2011 08:39
-
-
Save tomohiro/1079942 to your computer and use it in GitHub Desktop.
Install Vundle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ./vundlize.sh | |
| echo 'Input your proxy [default: null]. example: http://proxy.example.com:8080' | |
| echo -n 'Proxy: ' | |
| read PROXY | |
| export https_proxy=$PROXY | |
| echo "export https_proxy=$PROXY" >> .bashrc | |
| cd $HOME | |
| echo 'Getting vundle...' | |
| git clone https://github.com/gmarik/vundle.git .vim/bundle/vundle | |
| echo 'set runtimepath+=~/.vim/bundle/vundle/' >> ~/.vimrc | |
| echo 'call vundle#rc()' >> ~/.vimrc | |
| echo "Bundle 'gmarik/vundle'" >> ~/.vimrc | |
| echo 'Finish. Happy vim life!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment