-
-
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)
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 | |
# 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