summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/prompt_git_info
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-08-13 20:53:57 +0200
committerGravatar Tom Willemse2013-08-13 20:53:57 +0200
commit2a133f4a39b120cf89755a6222760e1d6c4a45ce (patch)
treeaa5d3e6933072005da11fea6e21b9f4352a2f629 /.zsh/functions/prompt_git_info
downloadzsh-2a133f4a39b120cf89755a6222760e1d6c4a45ce.tar.gz
zsh-2a133f4a39b120cf89755a6222760e1d6c4a45ce.zip
Initial commit of my ZSH configuration in vcsh
Diffstat (limited to '.zsh/functions/prompt_git_info')
-rw-r--r--.zsh/functions/prompt_git_info23
1 files changed, 23 insertions, 0 deletions
diff --git a/.zsh/functions/prompt_git_info b/.zsh/functions/prompt_git_info
new file mode 100644
index 0000000..76d889a
--- /dev/null
+++ b/.zsh/functions/prompt_git_info
@@ -0,0 +1,23 @@
+# -*- mode: shell-script -*-
+
+if [ -n "$__CURRENT_GIT_BRANCH" ]; then
+ local s="("
+ s+="$__CURRENT_GIT_BRANCH"
+ case "$__CURRENT_GIT_BRANCH_STATUS" in
+ ahead)
+ s+="↑"
+ ;;
+ diverged)
+ s+="↕"
+ ;;
+ behind)
+ s+="↓"
+ ;;
+ esac
+ if [ -n "$__CURRENT_GIT_BRANCH_IS_DIRTY" ]; then
+ s+="⚡"
+ fi
+ s+=")"
+
+ printf " %s%s" "%{${fg[yellow]}%}" $s
+fi