Skip to content

Instantly share code, notes, and snippets.

@juliomatcom
Last active March 16, 2021 08:50
Show Gist options
  • Save juliomatcom/5f6bf5a0a0d1df9108c915ef7d20bb71 to your computer and use it in GitHub Desktop.
Save juliomatcom/5f6bf5a0a0d1df9108c915ef7d20bb71 to your computer and use it in GitHub Desktop.
change colors in terminal zsh - macOS Big Sur
# 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