Vim, Janus and Solarized on Ubuntu done right
MacVim, Janus and Solarized look great but how do you bring that to your SSH sessions?

First install Vim with ruby support.
# install Vim with ruby support sudo apt-get install vim-nox
Then let Janus take over…
# install Janus curl https://raw.github.com/carlhuda/janus/master/bootstrap.sh -o - | sh
Solarized is packaged with Janus but the color settings are all wrong. Here’s how to get it right:
" ~/.vimrc.local let g:solarized_termcolors=256 set t_Co=16 set background=dark colorscheme solarized
Install it all:
# install Vim with ruby support sudo apt-get install vim-nox # install Janus curl https://raw.github.com/carlhuda/janus/master/bootstrap.sh -o - |sh # setup the solarized theme curl https://raw.github.com/posterous/vim/master/vimrc.local > ~/.vimrc.local



