This commit is contained in:
Grace Yoder 2026-03-10 13:10:32 -04:00
commit 5fdb347da5
No known key found for this signature in database
21 changed files with 370 additions and 10 deletions

View file

@ -97,6 +97,10 @@ git status --porcelain | awk '
}
}
'
unpushed=$(git rev-list @{u}..HEAD 2>/dev/null | wc -l | tr -d ' ')
if [ -n "$unpushed" ] && [ "$unpushed" -gt 0 ]; then
printf "\033[38;2;137;220;235m⇡%d " "$unpushed"
fi
'''
when = 'git rev-parse --is-inside-work-tree 2>/dev/null && ! jj root 2>/dev/null'
shell = ["sh"]