Skip to content

Instantly share code, notes, and snippets.

@stinger
Created July 3, 2019 14:58
Show Gist options
  • Save stinger/ecd6b49ea5f6eae5f8dc00e4f75756ef to your computer and use it in GitHub Desktop.
Save stinger/ecd6b49ea5f6eae5f8dc00e4f75756ef to your computer and use it in GitHub Desktop.
My oh-my-zsh theme
function prompt_char {
if [ $UID -eq 0 ]; then echo "#"; else echo $; fi
}
PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[cyan]%}%n@)%m:%{$fg_bold[green]%}%(!.%~.%1~)%{$fg_bold[yellow]%} $(git_prompt_info)%{$fg_bold[cyan]%}$(prompt_char)%{$reset_color%} '
ZSH_THEME_GIT_PROMPT_PREFIX="("
ZSH_THEME_GIT_PROMPT_SUFFIX=") "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment