Skip to content

Commit

Permalink
redirect only std err
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergiles committed Oct 26, 2022
1 parent 6721314 commit 637b899
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ type -a rbenv > /dev/null && eval "$(rbenv init -)"

# Load pyenv (to manage your Python versions)
export PYENV_VIRTUALENV_DISABLE_PROMPT=1
function run_virtualenv_hook { eval "$(pyenv virtualenv-init -)"; }
type -a pyenv > /dev/null && eval "$(pyenv init -)" run_virtualenv_hook > /dev/null 2>&1 && RPROMPT+='[🐍 $(pyenv version-name)]'
type -a pyenv > /dev/null && eval "$(pyenv init -)" && eval "$(pyenv virtualenv-init - 2> /dev/null)" && RPROMPT+='[🐍 $(pyenv version-name)]'

# Load nvm (to manage your node versions)
export NVM_DIR="$HOME/.nvm"
Expand Down

0 comments on commit 637b899

Please sign in to comment.