Created
June 8, 2012 05:47
-
-
Save kraft001/2893831 to your computer and use it in GitHub Desktop.
solarized Gnome Terminal + Tmux + Vim
This file contains 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
# 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 |
I'm getting "/home/user/.solarized/tmux-colors-solarized/tmuxcolors.conf: No such file or directory". Any ideas? :(
Also the dircolors doesn't seem to work, does it need to be manually linked to from my .bashrc file?
Thanks! Works like charm!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Still relevant after 3 years. Thank you.