From 9f810eec6a98011b551c40f8686b88a4fb0b0862 Mon Sep 17 00:00:00 2001 From: neodarz Date: Mon, 9 Sep 2019 07:02:56 +0200 Subject: Add zsh config --- dotfiles/zsh/functions/prompt_git_info | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 dotfiles/zsh/functions/prompt_git_info (limited to 'dotfiles/zsh/functions/prompt_git_info') diff --git a/dotfiles/zsh/functions/prompt_git_info b/dotfiles/zsh/functions/prompt_git_info new file mode 100755 index 0000000..d6d3acb --- /dev/null +++ b/dotfiles/zsh/functions/prompt_git_info @@ -0,0 +1,21 @@ +if [ -n "$__CURRENT_GIT_BRANCH" ]; then + local s="${USER_LEVEL}-[%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+="${USER_LEVEL}]" + + printf "%s%s" $s +fi \ No newline at end of file -- cgit v1.2.1