diff options
author | Robby Russell <robby@planetargon.com> | 2012-12-04 08:27:13 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-12-04 08:27:13 -0800 |
commit | 178bce287ea26e5052091e66415521703848d5da (patch) | |
tree | 0db169c4861c0b0ce64eb7f9ae97fe5537558c53 /themes | |
parent | 63deae380cece1abe4634e68a3e0df817b152da4 (diff) | |
parent | 0118b5b759f3471478065b2163250852b7fa8c73 (diff) | |
download | zsh-178bce287ea26e5052091e66415521703848d5da.tar.gz zsh-178bce287ea26e5052091e66415521703848d5da.tar.bz2 zsh-178bce287ea26e5052091e66415521703848d5da.zip |
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
Diffstat (limited to 'themes')
-rw-r--r-- | themes/cloud.zsh-theme | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/themes/cloud.zsh-theme b/themes/cloud.zsh-theme index ad5e2834b..4efbf9776 100644 --- a/themes/cloud.zsh-theme +++ b/themes/cloud.zsh-theme @@ -1,4 +1,8 @@ -PROMPT='%{$fg_bold[cyan]%}☁ %{$fg_bold[green]%}%p %{$fg[green]%}%c %{$fg_bold[cyan]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' +if [[ -z $ZSH_THEME_CLOUD_PREFIX ]]; then + ZSH_THEME_CLOUD_PREFIX='☁' +fi + +PROMPT='%{$fg_bold[cyan]%}$ZSH_THEME_CLOUD_PREFIX %{$fg_bold[green]%}%p %{$fg[green]%}%c %{$fg_bold[cyan]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[%{$fg[cyan]%}" ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |