Skip to content

Commit 7e4d17a

Browse files
author
Zeno Rocha
committed
Add ZSH theme - Fixes #4
0 parents  commit 7e4d17a

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

β€Žzsh/galleta.zsh-theme

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

Comments
Β (0)