diff options
author | Robby Russell <robby@planetargon.com> | 2014-03-13 16:18:06 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-03-13 16:18:06 -0700 |
commit | d943d23aa01e5488451a7babdb4d89228fee5be7 (patch) | |
tree | 0b660453e7d02f62509b1d8aa465dcad85a4b435 | |
parent | 07c2bdf45ddc5021a69202a363e36d32d65cca70 (diff) | |
parent | 3d41804fbce109a09f8d9549e875b428621cd85b (diff) | |
download | zsh-d943d23aa01e5488451a7babdb4d89228fee5be7.tar.gz zsh-d943d23aa01e5488451a7babdb4d89228fee5be7.tar.bz2 zsh-d943d23aa01e5488451a7babdb4d89228fee5be7.zip |
Merge pull request #2466 from jarus/steeef-virtualenv-fix
Improve virtualenv prompt in steeef theme
-rw-r--r-- | themes/steeef.zsh-theme | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/steeef.zsh-theme b/themes/steeef.zsh-theme index 312229e9f..e0080b8a5 100644 --- a/themes/steeef.zsh-theme +++ b/themes/steeef.zsh-theme @@ -8,7 +8,7 @@ # http://briancarper.net/blog/570/git-info-in-your-zsh-prompt function virtualenv_info { - [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') ' + [ $VIRTUAL_ENV ] && echo '('$fg[blue]`basename $VIRTUAL_ENV`%{$reset_color%}') ' } PR_GIT_UPDATE=1 @@ -87,7 +87,7 @@ function steeef_precmd { else FMT_BRANCH="(%{$turquoise%}%b%u%c${PR_RST})" fi - zstyle ':vcs_info:*:prompt:*' formats "${FMT_BRANCH}" + zstyle ':vcs_info:*:prompt:*' formats "${FMT_BRANCH} " vcs_info 'prompt' PR_GIT_UPDATE= @@ -96,5 +96,5 @@ function steeef_precmd { add-zsh-hook precmd steeef_precmd PROMPT=$' -%{$purple%}%n%{$reset_color%} at %{$orange%}%m%{$reset_color%} in %{$limegreen%}%~%{$reset_color%} $vcs_info_msg_0_ -$(virtualenv_info)$ ' +%{$purple%}%n%{$reset_color%} at %{$orange%}%m%{$reset_color%} in %{$limegreen%}%~%{$reset_color%} $vcs_info_msg_0_$(virtualenv_info)%{$reset_color%} +$ ' |