Skip to content

Instantly share code, notes, and snippets.

@mrandi
Created April 25, 2016 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrandi/f9997becd102651a698d1f23bff9b19b to your computer and use it in GitHub Desktop.
Save mrandi/f9997becd102651a698d1f23bff9b19b to your computer and use it in GitHub Desktop.
custom zsh theme
function prompt_char {
if [ $UID -eq 0 ]; then echo "#"; else echo $; fi
}
PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[blue]%}%(!.%1~.%~) $(git_prompt_info)%_$(prompt_char)%{$reset_color%} '
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}("
ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment