summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIrakli Gozalishvili <rfobic@gmail.com>2010-10-09 02:16:10 +0200
committerIrakli Gozalishvili <rfobic@gmail.com>2010-10-09 02:16:10 +0200
commitdeb0f7478b292b48338bc4d6098b8f6b013d0b4b (patch)
tree4cca314500efd0a3e509558e229c1d955123002b
parentb6dde1e8cfb938e507e5e8db9eac99d28a020468 (diff)
downloadzsh-deb0f7478b292b48338bc4d6098b8f6b013d0b4b.tar.gz
zsh-deb0f7478b292b48338bc4d6098b8f6b013d0b4b.tar.bz2
zsh-deb0f7478b292b48338bc4d6098b8f6b013d0b4b.zip
Fixing some minor redrew issue
-rw-r--r--themes/gozilla.zsh-theme11
1 files changed, 6 insertions, 5 deletions
diff --git a/themes/gozilla.zsh-theme b/themes/gozilla.zsh-theme
index 3112b3670..97566e380 100644
--- a/themes/gozilla.zsh-theme
+++ b/themes/gozilla.zsh-theme
@@ -1,8 +1,12 @@
-PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p%{$fg[cyan]%}%c%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-RPROMPT='$(git_prompt_status)'
+PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX="(%{%}"
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
+ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}"
+ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}"
+
+RPROMPT='$(git_prompt_status)'
+
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✈%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ✭%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✗%{$reset_color%}"
@@ -10,6 +14,3 @@ ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➦%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%} ⚡%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%} ⚑%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}"
-