2011-12-09 18:18:54 +00:00
|
|
|
# Yay! High voltage and arrows!
|
|
|
|
|
2011-12-28 14:54:47 +00:00
|
|
|
prompt_setup_pygmalion(){
|
2020-08-28 22:27:06 +00:00
|
|
|
setopt localoptions extendedglob
|
|
|
|
|
2011-12-28 14:54:47 +00:00
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}"
|
|
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
|
|
|
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}⚡%{$reset_color%}"
|
|
|
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
|
|
|
|
|
|
|
base_prompt='%{$fg[magenta]%}%n%{$reset_color%}%{$fg[cyan]%}@%{$reset_color%}%{$fg[yellow]%}%m%{$reset_color%}%{$fg[red]%}:%{$reset_color%}%{$fg[cyan]%}%0~%{$reset_color%}%{$fg[red]%}|%{$reset_color%}'
|
|
|
|
post_prompt='%{$fg[cyan]%}⇒%{$reset_color%} '
|
|
|
|
|
2020-08-28 22:27:06 +00:00
|
|
|
base_prompt_nocolor=${base_prompt//\%\{[^\}]##\}}
|
|
|
|
post_prompt_nocolor=${post_prompt//\%\{[^\}]##\}}
|
2011-12-28 14:54:47 +00:00
|
|
|
|
2019-11-19 17:47:12 +00:00
|
|
|
autoload -U add-zsh-hook
|
|
|
|
add-zsh-hook precmd prompt_pygmalion_precmd
|
2011-12-28 14:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
prompt_pygmalion_precmd(){
|
2021-11-09 08:54:21 +00:00
|
|
|
setopt localoptions nopromptsubst extendedglob
|
2020-08-28 22:27:06 +00:00
|
|
|
|
2011-12-28 14:54:47 +00:00
|
|
|
local gitinfo=$(git_prompt_info)
|
2020-08-28 22:27:06 +00:00
|
|
|
local gitinfo_nocolor=${gitinfo//\%\{[^\}]##\}}
|
2021-11-09 08:54:21 +00:00
|
|
|
local exp_nocolor="$(print -P \"${base_prompt_nocolor}${gitinfo_nocolor}${post_prompt_nocolor}\")"
|
2011-12-28 14:54:47 +00:00
|
|
|
local prompt_length=${#exp_nocolor}
|
|
|
|
|
2021-11-09 08:54:21 +00:00
|
|
|
PROMPT="${base_prompt}\$(git_prompt_info)${post_prompt}"
|
2011-12-28 14:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
prompt_setup_pygmalion
|