1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 21:59:43 +00:00
prezto/modules/prompt/functions/prompt_minimal_setup

51 lines
1.3 KiB
Plaintext
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# A monochrome theme that displays basic information.
#
# Authors:
# Brian Tse <briankftse@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2012-08-06 20:53:03 +00:00
# Screenshots:
# http://i.imgur.com/zLZNK.png
#
2012-02-01 04:37:51 +00:00
2014-10-14 23:32:48 +00:00
function +vi-git_status {
2012-08-06 20:52:38 +00:00
# Check for untracked files or updated submodules since vcs_info does not.
if [[ -n $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then
hook_com[unstaged]='%F{red}●%f'
fi
}
function prompt_minimal_precmd {
vcs_info
}
function prompt_minimal_setup {
setopt LOCAL_OPTIONS
unsetopt XTRACE KSH_ARRAYS
prompt_opts=(cr percent subst)
2012-08-06 20:52:38 +00:00
# Load required functions.
autoload -Uz add-zsh-hook
autoload -Uz vcs_info
2012-08-06 20:52:38 +00:00
# Add hook for calling vcs_info before each command.
add-zsh-hook precmd prompt_minimal_precmd
2012-08-06 20:52:38 +00:00
# Set vcs_info parameters.
zstyle ':vcs_info:*' enable bzr git hg svn
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' stagedstr '%F{green}●%f'
zstyle ':vcs_info:*' unstagedstr '%F{yellow}●%f'
zstyle ':vcs_info:*' formats ' - [%b%c%u]'
zstyle ':vcs_info:*' actionformats " - [%b%c%u|%F{cyan}%a%f]"
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b|%F{cyan}%r%f'
2014-10-14 23:32:48 +00:00
zstyle ':vcs_info:git*+set-message:*' hooks git_status
2012-08-06 20:52:38 +00:00
# Define prompts.
PROMPT='%2~${vcs_info_msg_0_} » '
2012-09-10 17:23:34 +00:00
RPROMPT=''
}
prompt_minimal_setup "$@"