2013-05-19 21:48:02 +00:00
|
|
|
|
#
|
|
|
|
|
# A single line theme with Git information on the left and Ruby on the right.
|
|
|
|
|
#
|
|
|
|
|
# Authors:
|
|
|
|
|
# Kyle West <kswest@gmail.com>
|
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
|
#
|
|
|
|
|
# Features:
|
|
|
|
|
# - Indicates dirty Git repository.
|
|
|
|
|
# - Indicates the Ruby version.
|
|
|
|
|
# - Indicates vi modes.
|
|
|
|
|
#
|
|
|
|
|
# Screenshots:
|
|
|
|
|
# http://i.imgur.com/dCwhynn.png
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
function prompt_kylewest_precmd {
|
|
|
|
|
setopt LOCAL_OPTIONS
|
|
|
|
|
unsetopt XTRACE KSH_ARRAYS
|
|
|
|
|
|
|
|
|
|
# Get Git repository information.
|
|
|
|
|
if (( $+functions[git-info] )); then
|
|
|
|
|
git-info
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Get Ruby information.
|
|
|
|
|
if (( $+functions[ruby-info] )); then
|
|
|
|
|
ruby-info
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function prompt_kylewest_setup {
|
|
|
|
|
setopt LOCAL_OPTIONS
|
|
|
|
|
unsetopt XTRACE KSH_ARRAYS
|
2017-08-10 18:23:26 +00:00
|
|
|
|
prompt_opts=(cr percent sp subst)
|
2013-05-19 21:48:02 +00:00
|
|
|
|
|
|
|
|
|
# Load required functions.
|
|
|
|
|
autoload -Uz add-zsh-hook
|
|
|
|
|
|
|
|
|
|
# Add hook for calling git-info before each command.
|
|
|
|
|
add-zsh-hook precmd prompt_kylewest_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%b"
|
|
|
|
|
zstyle ':prezto:module:editor:info:keymap:alternate' format "%B%F{magenta}❮%f%b"
|
|
|
|
|
|
|
|
|
|
# Set git-info parameters.
|
|
|
|
|
zstyle ':prezto:module:git:info' verbose 'no'
|
|
|
|
|
zstyle ':prezto:module:git:info:branch' format '%F{yellow}%b%f'
|
|
|
|
|
zstyle ':prezto:module:git:info:dirty' format '%B%F{red}!%f%b'
|
|
|
|
|
zstyle ':prezto:module:git:info:indexed' format ' '
|
|
|
|
|
zstyle ':prezto:module:git:info:unindexed' format ' '
|
|
|
|
|
zstyle ':prezto:module:git:info:untracked' format ' '
|
|
|
|
|
zstyle ':prezto:module:git:info:keys' format 'prompt' '- %b%D '
|
|
|
|
|
|
|
|
|
|
# Set ruby-info parameters.
|
|
|
|
|
zstyle ':prezto:module:ruby:info:version' format '%F{blue}[%v]%f'
|
|
|
|
|
|
|
|
|
|
# Define prompts.
|
2014-12-02 06:28:02 +00:00
|
|
|
|
PROMPT='%F{cyan}%c%f ${git_info:+${(e)git_info[prompt]}}${editor_info[keymap]} '
|
2013-05-19 21:48:02 +00:00
|
|
|
|
RPROMPT='${ruby_info[version]}'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
prompt_kylewest_setup "$@"
|