Last active
December 18, 2015 14:48
-
-
Save r3bo0t/5799382 to your computer and use it in GitHub Desktop.
a minimalistic prezto prompt theme. Keep it in .zprezto/modules/prompt/functions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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