Last active
March 16, 2021 08:50
-
-
Save juliomatcom/5f6bf5a0a0d1df9108c915ef7d20bb71 to your computer and use it in GitHub Desktop.
change colors in terminal zsh - macOS Big Sur
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
# Comment next lines depending on your environment | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
# COLORS PROFILES START | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
autoload -U colors && colors | |
PS1="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% " | |
# COLORS PROFILES END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment