Created
March 17, 2016 22:39
-
-
Save frnhr/dba7261bcb6970cf6121 to your computer and use it in GitHub Desktop.
Show current pyenv python version in bash prompt, and also color virtual envs differently
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### | |
#### pyenv-virtualenv bash prompt customization | |
#### | |
# pyenv | |
eval "$(pyenv init -)" | |
# pyenv-virtualenv: | |
eval "$(pyenv virtualenv-init -)" | |
export PYENV_VIRTUALENV_DISABLE_PROMPT=1 | |
pyenvVirtualenvUpdatePrompt() { | |
RED='\[\e[0;31m\]' | |
GREEN='\[\e[0;32m\]' | |
BLUE='\[\e[0;34m\]' | |
RESET='\[\e[0m\]' | |
[ -z "$PYENV_VIRTUALENV_ORIGINAL_PS1" ] && export PYENV_VIRTUALENV_ORIGINAL_PS1="$PS1" | |
[ -z "$PYENV_VIRTUALENV_GLOBAL_NAME" ] && export PYENV_VIRTUALENV_GLOBAL_NAME="$(pyenv global)" | |
VENV_NAME="$(pyenv version-name)" | |
VENV_NAME="${VENV_NAME##*/}" | |
GLOBAL_NAME="$PYENV_VIRTUALENV_GLOBAL_NAME" | |
# non-global versions: | |
COLOR="$BLUE" | |
# global version: | |
[ "$VENV_NAME" == "$GLOBAL_NAME" ] && COLOR="$RED" | |
# virtual envs: | |
[ "${VIRTUAL_ENV##*/}" == "$VENV_NAME" ] && COLOR="$GREEN" | |
if [ -z "$COLOR" ]; then | |
PS1="$PYENV_VIRTUALENV_ORIGINAL_PS1" | |
else | |
PS1="($COLOR${VENV_NAME}$RESET)$PYENV_VIRTUALENV_ORIGINAL_PS1" | |
fi | |
export PS1 | |
} | |
export PROMPT_COMMAND="$PROMPT_COMMAND pyenvVirtualenvUpdatePrompt;" | |
## Recommanded pyenv setup: | |
## run this once, don't put it in .bash_profile (or similar) files! | |
# $ pyenv global system | |
# $ cd $HOME | |
# $ pyenv local 2.7.11 # or which ever version you like having as default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For people coming to this using fish, I somewhat replicated this functionality with this in my
config.fish
:Note that I'm using this guide for fish installation of pyenv, so no guarantee this will work with Oh My Fish. Next you edit your fish prompt with
funced fish_prompt
and put this:NOTE: You may have to put this whole function in
~/.config/fish/functions/fish_prompt.fish
in order to make it persist across reboots.The key is putting in the space after the VCS prompt, followed by the function we initialized, and then the
$normal
color for whatever comes after it in fish. After a refresh, withpyenv local 3.6.15
your prompt should look like:user@srv-1001 /m/c/U/h/D/s/G/tls (oop) 3.6.15>
Hope this helps everyone.