Skip to content

Instantly share code, notes, and snippets.

@sshkarupa
Forked from dustinsmith1024/gist:1686977
Last active September 19, 2016 22:08
Show Gist options
  • Select an option

  • Save sshkarupa/17b25e1aa25aafcc6337f941ee2e55ab to your computer and use it in GitHub Desktop.

Select an option

Save sshkarupa/17b25e1aa25aafcc6337f941ee2e55ab to your computer and use it in GitHub Desktop.
Installing Janus VIM on fresh Ubuntu
# HOW TO INSTALL JANUS
curl -Lo- http://bit.ly/janus-bootstrap | bash
#errored out...had to install git first, derrr
sudo apt-get install git
curl -Lo- http://bit.ly/janus-bootstrap | bash
# error! had to install rake next
sudo apt-get install rake
curl -Lo- http://bit.ly/janus-bootstrap | bash
# finally worked then wanted to edit and enable a darker theme
cd ~
echo 'color molokai' >> ~/.vimrc.after
# tried molokai but like solarized better
vi .vimrc.after
# sets up solarized properly
let g:solarized_termcolors=256
set t_Co=16
set background=dark
colorscheme solarized
# :wq! save it up
@sshkarupa
Copy link
Author

sshkarupa commented Sep 6, 2016

How to uninstall Janus

rm -rf ~/.vim
mv ~/.vim.old ~/.vim
mv ~/.vimrc.old ~/.vimrc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment