Showing 1 changed files with 2 additions and 2 deletions
+2 -2
.zsh/prompt
... ...
@@ -3,7 +3,7 @@ colors
3 3
 #setopt prompt_subst
4 4
 
5 5
 # Modify the colors and symbols in these variables as desired.
6
-GIT_PROMPT_SYMBOL="$fg[blue]±"
6
+#GIT_PROMPT_SYMBOL="$fg[blue]±"
7 7
 GIT_PROMPT_PREFIX="$fg[green][$reset_color"
8 8
 GIT_PROMPT_SUFFIX="$fg[green]]$reset_color"
9 9
 GIT_PROMPT_AHEAD="$fg[red]ANUM$reset_color"
... ...
@@ -58,7 +58,7 @@ parse_git_state() {
58 58
 # If inside a Git repository, print its branch and state
59 59
 git_prompt_string() {
60 60
     local git_where="$(parse_git_branch)"
61
-    [ -n "$git_where" ] && echo "$GIT_PROMPT_SYMBOL$(parse_git_state)$GIT_PROMPT_PREFIX$fg[yellow]${git_where#(refs/heads/|tags/)}$GIT_PROMPT_SUFFIX "
61
+    [ -n "$git_where" ] && echo "$(parse_git_state)$GIT_PROMPT_PREFIX$fg[yellow]${git_where#(refs/heads/|tags/)}$GIT_PROMPT_SUFFIX "
62 62
 }
63 63
 
64 64
 precmd () {