Skip to content

Instantly share code, notes, and snippets.

@ryu-blacknd
Forked from kraft001/solarized.bash
Created August 7, 2012 05:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ryu-blacknd/3281760 to your computer and use it in GitHub Desktop.
Save ryu-blacknd/3281760 to your computer and use it in GitHub Desktop.
solarized Gnome Terminal + Tmux + Vim
# store all solarized files in one place
mkdir ~/.solarized
cd ~/.solarized
# http://www.webupd8.org/2011/04/solarized-must-have-color-paletter-for.html
git clone https://github.com/seebi/dircolors-solarized.git
eval `dircolors ~/.solarized/dircolors-solarized/dircolors.256dark`
ln -s ~/.solarized/dircolors-solarized/dircolors.256dark ~/.dir_colors
git clone https://github.com/sigurdga/gnome-terminal-colors-solarized.git
./gnome-terminal-colors-solarized/install.sh
git clone https://github.com/seebi/tmux-colors-solarized.git
echo "
set -g default-terminal \"screen-256color-bce\"
source ~/.solarized/tmux-colors-solarized/tmuxcolors.conf" >> ~/.tmux.conf
# http://twoism.posterous.com/vim-janus-and-solarized-on-ubuntu-done-right
# git clone https://github.com/altercation/vim-colors-solarized.git
echo "
set term=screen-256color-bce
let g:solarized_termcolors=256
set t_Co=256
set background=dark
colorscheme default " >> ~/.vimrc.after
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment