Skip to content

Instantly share code, notes, and snippets.

@kraft001
Created June 8, 2012 05:47
Show Gist options
  • Star 57 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save kraft001/2893831 to your computer and use it in GitHub Desktop.
Save kraft001/2893831 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
@thedaemon
Copy link

Thanks, this helped.

@stephaneliu
Copy link

Still relevant after 3 years. Thank you.

@tokelove
Copy link

I'm getting "/home/user/.solarized/tmux-colors-solarized/tmuxcolors.conf: No such file or directory". Any ideas? :(

@tokelove
Copy link

Also the dircolors doesn't seem to work, does it need to be manually linked to from my .bashrc file?

@stefanproell
Copy link

Thanks! Works like charm!

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