-
-
Save korayguclu/7ba24ae87ddd1063ac20 to your computer and use it in GitHub Desktop.
Installing Janus VIM on fresh Ubuntu
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
| sudo apt-get install git -y | |
| sudo apt-get install rake -y | |
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment