Browse Source

Added VIRTUAL_ENV_DISABLE_PROMPT to steeef.zsh-theme

This stops the virtual env name from being printed before it is actually being
used in the zsh prompt.
Jaap Broekhuizen 9 years ago
parent
commit
eae70054d1
1 changed files with 2 additions and 0 deletions
  1. 2 0
      themes/steeef.zsh-theme

+ 2 - 0
themes/steeef.zsh-theme

@@ -7,6 +7,8 @@
 # git untracked files modification from Brian Carper:
 # http://briancarper.net/blog/570/git-info-in-your-zsh-prompt
 
+export VIRTUAL_ENV_DISABLE_PROMPT=1
+
 function virtualenv_info {
     [ $VIRTUAL_ENV ] && echo '('$fg[blue]`basename $VIRTUAL_ENV`%{$reset_color%}') '
 }