mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-27 03:14:56 +01:00
11 lines
379 B
Bash
11 lines
379 B
Bash
# Prompt format
|
|
PROMPT='%(?: :%{$fg_bold[red]%} %s)'
|
|
RPROMPT='%{$fg_bold[cyan]%}${PWD/$HOME/~}%{$reset_color%}$(git_prompt_info)'
|
|
|
|
# Format for git_prompt_info()
|
|
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg_bold[green]%}"
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
|
|
|
# Format for parse_git_dirty()
|
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%} ●"
|
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|