54 lines
2.0 KiB
Plaintext
54 lines
2.0 KiB
Plaintext
pmodload 'helper'
|
|
|
|
function prompt_abra_precmd {
|
|
setopt LOCAL_OPTIONS
|
|
unsetopt XTRACE KSH_ARRAYS
|
|
|
|
# Get Git repository information.
|
|
if (( $+functions[git-info] )); then
|
|
git-info
|
|
fi
|
|
}
|
|
|
|
function prompt_abra_setup {
|
|
setopt LOCAL_OPTIONS
|
|
unsetopt XTRACE KSH_ARRAYS
|
|
prompt_opts=(cr percent subst)
|
|
|
|
# Load required functions.
|
|
autoload -Uz add-zsh-hook
|
|
|
|
# Add hook for calling git-info before each command.
|
|
add-zsh-hook precmd prompt_abra_precmd
|
|
|
|
# Set editor-info parameters.
|
|
zstyle ':prezto:module:editor:info:completing' format '%B%F{red}......%f%b'
|
|
zstyle ':prezto:module:editor:info:keymap:primary' format ' %B%(?:%F{green}➤%f:%F{red}➤%f)%b'
|
|
|
|
# Set git-info parameters.
|
|
zstyle ':prezto:module:git:info' verbose 'yes'
|
|
zstyle ':prezto:module:git:info:action' format ':%%B%F{yellow}%s%f%%b'
|
|
zstyle ':prezto:module:git:info:added' format ' %%B%F{green}✚%f%%b'
|
|
zstyle ':prezto:module:git:info:ahead' format ' %%B%F{yellow}⬆%f%%b'
|
|
zstyle ':prezto:module:git:info:behind' format ' %%B%F{yellow}⬇%f%%b'
|
|
zstyle ':prezto:module:git:info:branch' format ':%F{green}%b%f'
|
|
zstyle ':prezto:module:git:info:commit' format ':%F{green}%.7c%f'
|
|
zstyle ':prezto:module:git:info:deleted' format ' %%B%F{red}✖%f%%b'
|
|
zstyle ':prezto:module:git:info:modified' format ' %%B%F{blue}✱%f%%b'
|
|
zstyle ':prezto:module:git:info:position' format ':%F{red}%p%f'
|
|
zstyle ':prezto:module:git:info:renamed' format ' %%B%F{magenta}➜%f%%b'
|
|
zstyle ':prezto:module:git:info:stashed' format ' %%B%F{cyan}✭%f%%b'
|
|
zstyle ':prezto:module:git:info:unmerged' format ' %%B%F{yellow}═%f%%b'
|
|
zstyle ':prezto:module:git:info:untracked' format ' %%B%F{white}◼%f%%b'
|
|
zstyle ':prezto:module:git:info:keys' format \
|
|
'prompt' ' $(coalesce "%b" "%p" "%c")%s' \
|
|
'rprompt' '%A%B%S%a%d%m%r%U%u'
|
|
|
|
|
|
PROMPT='%F{cyan}%3~%f${git_info:+${(e)git_info[prompt]}}%(!. %B%F{red}#%f%b.)${editor_info[keymap]} '
|
|
RPROMPT='%(?::%F{red}%?%f )%B%F{green}%n@%2m%f%b${git_info[rprompt]} %F{blue}%*%f'
|
|
}
|
|
|
|
prompt_abra_setup "$@"
|
|
|