diff options
author | SuprDewd <suprdewd@gmail.com> | 2011-01-10 17:56:38 +0000 |
---|---|---|
committer | SuprDewd <suprdewd@gmail.com> | 2011-01-10 17:56:38 +0000 |
commit | beb980d37013ee9cf5f2fdd4f19444f7f7a77fcf (patch) | |
tree | fab6d1e8a11ba90ef236be37de99096f805e9c7b /themes | |
parent | bcc235e1420f39a0dbd8a7672dffc0f0c81e9b53 (diff) | |
parent | 7a9cc198196cb0c935afe96e1de249c3a05ad413 (diff) | |
download | zsh-beb980d37013ee9cf5f2fdd4f19444f7f7a77fcf.tar.gz zsh-beb980d37013ee9cf5f2fdd4f19444f7f7a77fcf.tar.bz2 zsh-beb980d37013ee9cf5f2fdd4f19444f7f7a77fcf.zip |
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'themes')
-rw-r--r-- | themes/fishy.zsh-theme | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/themes/fishy.zsh-theme b/themes/fishy.zsh-theme new file mode 100644 index 000000000..f22eda868 --- /dev/null +++ b/themes/fishy.zsh-theme @@ -0,0 +1,9 @@ +# ZSH Theme emulating the Fish shell's default prompt. + +local user_color='green'; [ $UID -eq 0 ] && user_color='red' +PROMPT='%n@%m %{$fg[$user_color]%}%~%{$reset_color%}%(!.#.>) ' +PROMPT2='%{$fg[red]%}\ %{$reset_color%}' +RPS1='%(?..%{$fg[red]%}%? ↵%{$reset_color%})$(git_prompt_info)' + +ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[cyan]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |