2012-01-31 23:37:51 -05:00
|
|
|
|
#
|
2012-08-06 16:52:38 -04:00
|
|
|
|
# A simple theme that displays relevant, contextual information.
|
2012-01-31 23:37:51 -05:00
|
|
|
|
#
|
|
|
|
|
# Authors:
|
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
|
#
|
|
|
|
|
# Screenshots:
|
2012-09-03 16:08:39 -04:00
|
|
|
|
# http://i.imgur.com/4CeOj.png
|
2012-01-31 23:37:51 -05:00
|
|
|
|
#
|
|
|
|
|
|
2012-03-23 14:57:51 -04:00
|
|
|
|
function prompt_sorin_precmd {
|
2011-10-10 22:16:12 -04:00
|
|
|
|
setopt LOCAL_OPTIONS
|
|
|
|
|
unsetopt XTRACE KSH_ARRAYS
|
2011-07-17 20:15:51 -04:00
|
|
|
|
|
2011-09-05 00:37:36 -04:00
|
|
|
|
if (( $+functions[git-info] )); then
|
|
|
|
|
git-info
|
|
|
|
|
fi
|
|
|
|
|
}
|
2011-07-17 20:15:51 -04:00
|
|
|
|
|
2012-03-23 14:57:51 -04:00
|
|
|
|
function prompt_sorin_setup {
|
2011-10-10 22:16:12 -04:00
|
|
|
|
setopt LOCAL_OPTIONS
|
|
|
|
|
unsetopt XTRACE KSH_ARRAYS
|
|
|
|
|
prompt_opts=(cr percent subst)
|
2011-09-05 00:37:36 -04:00
|
|
|
|
|
2012-08-06 16:52:38 -04:00
|
|
|
|
# Load required functions.
|
2011-09-05 00:37:36 -04:00
|
|
|
|
autoload -Uz add-zsh-hook
|
2012-08-06 16:52:38 -04:00
|
|
|
|
|
|
|
|
|
# Add hook for calling git-info before each command.
|
2011-09-05 00:37:36 -04:00
|
|
|
|
add-zsh-hook precmd prompt_sorin_precmd
|
|
|
|
|
|
2012-09-03 16:08:39 -04:00
|
|
|
|
zstyle ':prezto:module:editor' completing '%B%F{red}...%f%b'
|
|
|
|
|
zstyle ':prezto:module:editor:keymap:primary' overwrite ' %F{red}♺%f'
|
|
|
|
|
zstyle ':prezto:module:editor:keymap' alternate ' %F{yellow}❮%f%B%F{red}❮%f%b%F{red}❮%f'
|
|
|
|
|
zstyle ':prezto:module:git' action ':%%B%F{yellow}%s%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' added ' %%B%F{green}✚%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' ahead ' %%B%F{yellow}⬆%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' behind ' %%B%F{yellow}⬇%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' branch ':%F{red}%b%f'
|
|
|
|
|
zstyle ':prezto:module:git' commit ':%F{green}%.7c%f'
|
|
|
|
|
zstyle ':prezto:module:git' deleted ' %%B%F{red}✖%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' modified ' %%B%F{blue}✱%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' position ':%F{green}%p%f'
|
|
|
|
|
zstyle ':prezto:module:git' renamed ' %%B%F{magenta}➜%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' stashed ' %%B%F{cyan}✭%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' unmerged ' %%B%F{yellow}═%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' untracked ' %%B%F{white}◼%f%%b'
|
|
|
|
|
zstyle ':prezto:module:git' info \
|
2012-04-04 18:55:15 -04:00
|
|
|
|
'prompt' ' %F{blue}git%f$(coalesce "%b" "%p" "%c")%s' \
|
|
|
|
|
'rprompt' '%A%B%S%a%d%m%r%U%u'
|
2011-07-17 20:15:51 -04:00
|
|
|
|
|
2012-08-06 16:52:38 -04:00
|
|
|
|
# Define prompts.
|
2012-04-11 11:55:29 -04:00
|
|
|
|
PROMPT='%F{cyan}%1~%f${git_info:+${(e)git_info[prompt]}} %(!.%B%F{red}#%f%b.%B%F{green}❯%f%b) '
|
2012-04-10 23:12:45 -04:00
|
|
|
|
RPROMPT='${editor_info[keymap]}${editor_info[overwrite]}%(?:: %F{red}⏎%f)${VIM:+" %B%F{green}V%f%b"}${git_info[rprompt]}'
|
2011-09-05 00:37:36 -04:00
|
|
|
|
SPROMPT='zsh: correct %F{red}%R%f to %F{green}%r%f [nyae]? '
|
2011-07-17 20:15:51 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
prompt_sorin_setup "$@"
|
2012-04-04 18:55:15 -04:00
|
|
|
|
|