aboutsummaryrefslogtreecommitdiff
path: root/zsh/.zsh/functions/prompt_git_info
blob: d492ac83e408511b5ec41b5cff8cfa1a33554d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if [ -n "$__CURRENT_GIT_BRANCH" ]; then
    local s="%F{cyan}-[%F{white}"
    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+="%F{cyan}]"
 
    printf "%s%s" $s
fi