You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go to the configs directory and open the pixegami file in your IDE.
Update the code of the prompt_virtualenv function as:
prompt_virtualenv() {
if [[ -n $CONDA_PROMPT_MODIFIER ]]; then
prompt_segment black default ${CONDA_PROMPT_MODIFIER:1:-2}
elif [[ -n $VIRTUAL_ENV ]]; then
local venv_name
venv_name=$(basename "$VIRTUAL_ENV")
prompt_segment black default "($venv_name)"
fi
}
When a python virtual environment is activated, It does not display name of virtual environment in brackets like in bash
The text was updated successfully, but these errors were encountered: