Last active
April 30, 2018 14:49
-
-
Save halohalospecial/205effab1fa0d088bb9932d3796db6ca to your computer and use it in GitHub Desktop.
zsh + oh-my-zsh + gnome-terminal + solarized
This file contains hidden or 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
sudo apt-get install -y zsh | |
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh | |
chsh -s `which zsh` | |
git clone git://github.com/sigurdga/gnome-terminal-colors-solarized.git ~/.solarized | |
cd ~/.solarized | |
./install.sh | |
# Note: Type `YES` to all `YES to continue` prompts. | |
wget https://raw.githubusercontent.com/seebi/dircolors-solarized/master/dircolors.ansi-dark | |
echo 'eval `dircolors ~/.solarized/dircolors.ansi-dark`' >> ~/.zshrc | |
echo 'PROMPT='\''%{$fg[white]%}%n@%m:%~ %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[white]%}$ % %{$reset_color%}'\''' >> ~/.zshrc | |
echo 'RPROMPT='\''%{$fg[blue]%}%D{%F} %* %{$reset_color%}'\''' >> ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment