mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-09 02:24:03 +01:00
14 lines
764 B
Bash
14 lines
764 B
Bash
#-------------------------------------------------------------------------------
|
|
# Sunrise theme for oh-my-zsh by Andy Matthews (@commadelimited)
|
|
#-------------------------------------------------------------------------------
|
|
PROMPT='%{$fg_bold[yellow]%}☀ %{$fg_bold[red]%}%p %{$fg[red]%}%c %{$fg_bold[cyan]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
|
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[%{$fg[cyan]%}"
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}] %{$fg[yellow]%}⚡%{$reset_color%}"
|
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}]"
|
|
|
|
ZSH_THEME_SVN_PROMPT_PREFIX="svn:("
|
|
ZSH_THEME_SVN_PROMPT_SUFFIX=")"
|
|
ZSH_THEME_SVN_PROMPT_DIRTY="%{$fg[red]%} ✘ %{$reset_color%}"
|
|
ZSH_THEME_SVN_PROMPT_CLEAN=" "
|