1
+ # -- Galleta Theme v1.0.0 ------------------------------------------------------
2
+ #
3
+ # Copyright 2013, All rights reserved
4
+ #
5
+ # Code licensed under the MIT license
6
+ # http://zenorocha.mit-license.org
7
+ #
8
+ # @author Zeno Rocha <hi@zenorocha.com>
9
+ #
10
+ # -- Local Status Symbols ------------------------------------------------------
11
+ # β : repository clean (green)
12
+ # βn: there are n staged files (cyan)
13
+ # βn: there are n changed but unstaged files (magenta)
14
+ # βn: there are n unmerged files (red)
15
+ # ? : there are some untracked files (yellow)
16
+ #
17
+ # -- Branch Tracking Symbols ---------------------------------------------------
18
+ # βn: ahead of remote by n commits
19
+ # βn: behind remote by n commits
20
+ # βmβn: branches diverged, other by m commits, yours by n commits
21
+
22
+ PROMPT=' %{$fg_bold[red]%}β %{$fg_bold[green]%}%p %{$fg_bold[blue]%}%c %{$fg_bold[blue]%}$(git_super_status)%{$fg_bold[blue]%} % %{$reset_color%}'
23
+
24
+ ZSH_THEME_GIT_PROMPT_PREFIX=" ("
25
+ ZSH_THEME_GIT_PROMPT_SUFFIX=" %{$fg_bold [blue]%})%{$reset_color %}"
26
+ ZSH_THEME_GIT_PROMPT_SEPARATOR=" %{$fg_bold [blue]%}|"
27
+ ZSH_THEME_GIT_PROMPT_BRANCH=" %{$fg_bold [cyan]%}"
28
+ ZSH_THEME_GIT_PROMPT_STAGED=" %{$fg_bold [cyan]%}β"
29
+ ZSH_THEME_GIT_PROMPT_CONFLICTS=" %{$fg_bold [red]%}β"
30
+ ZSH_THEME_GIT_PROMPT_CHANGED=" %{$fg_bold [magenta]%}β"
31
+ ZSH_THEME_GIT_PROMPT_REMOTE=" "
32
+ ZSH_THEME_GIT_PROMPT_UNTRACKED=" %{$fg_bold [yellow]%}?"
33
+ ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg_bold [green]%}β"
0 commit comments