summaryrefslogtreecommitdiff
path: root/zsh/functions/prompt_git_info
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/functions/prompt_git_info')
-rw-r--r--zsh/functions/prompt_git_info22
1 files changed, 22 insertions, 0 deletions
diff --git a/zsh/functions/prompt_git_info b/zsh/functions/prompt_git_info
new file mode 100644
index 0000000..6098669
--- /dev/null
+++ b/zsh/functions/prompt_git_info
@@ -0,0 +1,22 @@
+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
+
+ echo $s
+fi