Skip to content

Instantly share code, notes, and snippets.

@a1ee9b
Created October 11, 2013 22:43
Show Gist options
  • Save a1ee9b/6943133 to your computer and use it in GitHub Desktop.
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.
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