From 3e24ce0e2fbbf5ab792955464a079e21b1b536ad Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Mon, 5 Jun 2017 20:17:22 +0100 Subject: [PATCH] Update git status symbol --- zsh/configs/prompt.zsh.local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/configs/prompt.zsh.local b/zsh/configs/prompt.zsh.local index 95ef27c..5b43277 100644 --- a/zsh/configs/prompt.zsh.local +++ b/zsh/configs/prompt.zsh.local @@ -2,10 +2,10 @@ git_dirty() { git diff --ignore-submodules --quiet if [[ $? == 1 ]]; then - echo "⭑" + echo "✱" else git diff --staged --ignore-submodules --quiet - [[ $? == 1 ]] && echo "⭑" + [[ $? == 1 ]] && echo "✱" fi }