Created
October 11, 2013 22:43
-
-
Save a1ee9b/6943133 to your computer and use it in GitHub Desktop.
A ZSH-Template. Shows the current user at machine plus the collapsed path and git branch and status.
This file contains 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 collapse_pwd { | |
echo $(pwd | sed -e "s,^$HOME,~,") | |
} | |
local return_code="%(?..%{$fg_bold[red]%}%? ↵ %{$reset_color%})" | |
PROMPT='${return_code}%{$fg_no_bold[green]%}(%n@%M)$(collapse_pwd)%{$reset_color%}$(git_prompt_info) »' | |
RPROMPT="%D{%H:%M:%S %e.%b.%Y}" | |
# git settings | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_no_bold[blue]%} - (branch:" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg_no_bold[blue]%})%{$reset_color%}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment