Skip to content

Instantly share code, notes, and snippets.

@r3bo0t
Last active December 18, 2015 14:48
Show Gist options
  • Save r3bo0t/5799382 to your computer and use it in GitHub Desktop.
Save r3bo0t/5799382 to your computer and use it in GitHub Desktop.
a minimalistic prezto prompt theme. Keep it in .zprezto/modules/prompt/functions
function prompt_krao_precmd {
vcs_info
}
function prompt_krao_setup {
autoload -Uz vcs_info
add-zsh-hook precmd prompt_krao_precmd
zstyle ':vcs_info:*' enable git
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' unstagedstr '!'
zstyle ':vcs_info:*' stagedstr '+'
zstyle ':vcs_info:*' actionformats "%S" "%r|%s|%b %u%c (%a)"
zstyle ':vcs_info:*' formats "%S" "%r|%s|%b %u%c"
zstyle ':vcs_info:*' nvcsformats "%~" ""
# Define prompts.
PROMPT="%% "
RPROMPT="%F{cyan}"'${vcs_info_msg_1_}'"%f"
}
prompt_krao_setup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment