summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--01_Internal.zsh6
1 files changed, 3 insertions, 3 deletions
diff --git a/01_Internal.zsh b/01_Internal.zsh
index 0eb2bfc..caf2a08 100644
--- a/01_Internal.zsh
+++ b/01_Internal.zsh
@@ -226,13 +226,13 @@ __get_git_branch ()
local _stashed=$(git stash list | wc -l )
if [ "$_stashed" -gt 0 ]
then
- my_git_branch+=$C_$_prompt_colors[soft_generic]$_C
+ my_git_branch+=" "$C_$_prompt_colors[soft_generic]$_C
while [ $_stashed -gt 1 ]
do
- my_git_branch+="·"
+ my_git_branch+="⚡"
_stashed=$(( $_stashed - 1 ))
done
- my_git_branch+="$C_$color[blink];$_prompt_colors[soft_generic]$_C·"
+ my_git_branch+="$C_$_prompt_colors[bold_generic];$color[white]$_C⚡"
fi
fi
__debug