2011-03-20 00:51:22 +00:00
|
|
|
|
# A multiline prompt with username, hostname, full path, return status, git branch, git dirty status, git remote status
|
|
|
|
|
|
|
|
|
|
local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}"
|
|
|
|
|
|
2012-09-21 02:35:09 +00:00
|
|
|
|
local host_color="green"
|
|
|
|
|
if [ -n "$SSH_CLIENT" ]; then
|
|
|
|
|
local host_color="red"
|
|
|
|
|
fi
|
|
|
|
|
|
2011-03-20 00:51:22 +00:00
|
|
|
|
PROMPT='
|
2012-09-21 02:35:09 +00:00
|
|
|
|
%{$fg_bold[grey]%}[%{$reset_color%}%{$fg_bold[${host_color}]%}%n@%m%{$reset_color%}%{$fg_bold[grey]%}]%{$reset_color%} %{$fg_bold[blue]%}%10c%{$reset_color%} $(git_prompt_info) $(git_remote_status)
|
2011-03-20 00:51:22 +00:00
|
|
|
|
%{$fg_bold[cyan]%}❯%{$reset_color%} '
|
|
|
|
|
|
2012-09-21 02:35:09 +00:00
|
|
|
|
|
2011-03-20 00:51:22 +00:00
|
|
|
|
RPROMPT='${return_status}%{$reset_color%}'
|
|
|
|
|
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[grey]%}(%{$fg[red]%}"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[grey]%}) %{$fg[yellow]%}⚡%{$reset_color%}"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[grey]%})"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE="%{$fg_bold[magenta]%}↓%{$reset_color%}"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE="%{$fg_bold[magenta]%}↑%{$reset_color%}"
|
2014-03-08 17:51:16 +00:00
|
|
|
|
ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE="%{$fg_bold[magenta]%}↕%{$reset_color%}"
|