Skip to content

Instantly share code, notes, and snippets.

@gonzalo-bulnes
Forked from kraft001/solarized.bash
Last active August 7, 2018 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gonzalo-bulnes/3c994e99f490f45c6cc2 to your computer and use it in GitHub Desktop.
Save gonzalo-bulnes/3c994e99f490f45c6cc2 to your computer and use it in GitHub Desktop.
Solarized Gnome Terminal + Tmux + Vim (using the Tmux Plugin Manager and Vim Pathogen)
# 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
# Install seebi/tmux-colors-solarized using the Tmux Plugin Manager
# See https://github.com/tmux-plugins/tpm
# and https://github.com/seebi/tmux-colors-solarized#installation-with-tmux-plugin-manager
# That's all on the Tmux side, now let's solarize Vim!
# Install altercation/vim-colors-solarized using Pathogen
# See https://github.com/tpope/vim-pathogen
# and https://github.com/altercation/vim-colors-solarized#option-2-pathogen-installation-recommended
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