Browse Source

Merge pull request #1223 from bigjust/master

Basic Virtualenv plugin
Robby Russell 12 years ago
parent
commit
b0f8683ffa
1 changed files with 9 additions and 0 deletions
  1. 9 0
      plugins/virtualenv/virtualenv.plugin.zsh

+ 9 - 0
plugins/virtualenv/virtualenv.plugin.zsh

@@ -0,0 +1,9 @@
+function virtualenv_prompt_info(){
+  local virtualenv_path="$VIRTUAL_ENV"
+  if [[ -n $virtualenv_path ]]; then
+    local virtualenv_name=`basename $virtualenv_path`
+    printf "%s[%s] " "%{${fg[yellow]}%}" $virtualenv_name
+  fi
+}
+
+export VIRTUAL_ENV_DISABLE_PROMPT=1