mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +01:00
8 lines
228 B
Bash
Executable file
8 lines
228 B
Bash
Executable file
function virtualenv_prompt_info(){
|
|
if [[ -n $VIRTUAL_ENV ]]; then
|
|
printf "%s[%s] " "%{${fg[yellow]}%}" ${${VIRTUAL_ENV}:t}
|
|
fi
|
|
}
|
|
|
|
# disables prompt mangling in virtual_env/bin/activate
|
|
export VIRTUAL_ENV_DISABLE_PROMPT=1
|