Skip to content

Commit

Permalink
Add agnoster.zsh-theme
Browse files Browse the repository at this point in the history
  • Loading branch information
agnoster committed Sep 13, 2012
1 parent 921d2f4 commit b11e289
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions themes/agnoster.zsh-theme
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Theme by [agnoster](https://github.com/agnoster)
# See https://gist.github.com/3712874

ZSH_THEME_GIT_PROMPT_DIRTY='±'

function _git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="$(git show-ref --head -s --abbrev |head -n1 2> /dev/null)"
echo "${ref/refs\/heads\//⭠ }$(parse_git_dirty)"
}

function _git_info() {
if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
local BG_COLOR=green
if [[ -n $(parse_git_dirty) ]]; then
BG_COLOR=yellow
fi
echo "%{%K{$BG_COLOR}%}⮀%{%F{black}%} $(_git_prompt_info) %{%F{$BG_COLOR}%K{blue}%}⮀"
else
echo "%{%K{blue}%}⮀"
fi
}

PROMPT_HOST='%{%b%F{gray}%K{black}%} %(?.%{%F{green}%}✔.%{%F{red}%}✘)%{%F{gray}%} %m %{%F{black}%}'
PROMPT_DIR='%{%F{white}%} %1~ '
PROMPT_SU='%(!.%{%k%F{blue}%K{black}%}⮀%{%F{yellow}%} ⚡ %{%k%F{black}%}.%{%k%F{blue}%})⮀%{%f%k%b%}'

PROMPT='%{%f%b%k%}
$PROMPT_HOST$(_git_info)$PROMPT_DIR$PROMPT_SU '

0 comments on commit b11e289

Please sign in to comment.