This vim configuration use vundle project.
- Clone this project
$ git clone git://github.com/rwestgeest/vim-conf.git .vim-conf
- Link the vimrc in vim-conf clone to .vimrc
$ ln -s ~/.vim-conf/vimrc ~/.vimrc
- Install Vundle
$ git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
Now you can use the vimrc and use Vundle.
You can see all information about how using vundle in their documentation
Please note that when using rich color schemes (like railscasts, solarezed or similar) in gnome terminal make sure you add the following in your .bashrc
if [ -n "$DISPLAY" -a "$TERM" == "xterm" ]; then
export TERM=xterm-256color
fi
and for tmux:
alias tmux="TERM=screen-256color-bce tmux"