Last active
July 8, 2023 11:08
-
-
Save Brunomm/518ab224f4a4ed390a4644de1ad894f0 to your computer and use it in GitHub Desktop.
zsh + oh-my-zsh + gnome-terminal
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
## INSTALL zsh | |
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` | |
## INSTALL oh-my-zsh | |
sh -c “$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)” | |
# Talvez seja necessário. | |
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