diff options
author | Robby Russell <robby@planetargon.com> | 2011-05-26 00:54:58 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-05-26 00:54:58 -0700 |
commit | bc00334be28c1c8756a95e46b1e29c67c6c2802c (patch) | |
tree | 6d8d4279890f21a9f969e9a82290ddc22fcd269b /themes/re5et.zsh-theme | |
parent | 22ae70f79d6bdb58c041949d9a6371a6d5e92c1d (diff) | |
parent | ba9ae6a1e5fe1b45a58e655ab3413bb95a82573e (diff) | |
download | zsh-bc00334be28c1c8756a95e46b1e29c67c6c2802c.tar.gz zsh-bc00334be28c1c8756a95e46b1e29c67c6c2802c.tar.bz2 zsh-bc00334be28c1c8756a95e46b1e29c67c6c2802c.zip |
Merge pull request #92 from re5et/master
added my zsh-theme
Diffstat (limited to 'themes/re5et.zsh-theme')
-rw-r--r-- | themes/re5et.zsh-theme | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/re5et.zsh-theme b/themes/re5et.zsh-theme new file mode 100644 index 000000000..5bded76a3 --- /dev/null +++ b/themes/re5et.zsh-theme @@ -0,0 +1,15 @@ +if [ "$(whoami)" = "root" ]; then CARETCOLOR="red"; else CARETCOLOR="magenta"; fi + +local return_code="%(?..%{$fg_bold[red]%}:( %?%{$reset_color%})" + +PROMPT=' +%{$fg_bold[cyan]%}%n%{$reset_color%}%{$fg[yellow]%}@%{$reset_color%}%{$fg_bold[blue]%}%m%{$reset_color%}:%{${fg_bold[green]}%}%~%{$reset_color%}$(git_prompt_info) +%{${fg[$CARETCOLOR]}%}%# %{${reset_color}%}' + +RPS1='${return_code} %D - %*' + +ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[magenta]%}^%{$reset_color%}%{$fg_bold[yellow]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" +ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%} ±" +ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ?" +ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[red]%} ♥" |