1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-10-16 11:40:46 +00:00
This commit is contained in:
John Pocock 2024-09-23 09:13:08 +02:00 committed by GitHub
commit 2d1a53150d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -227,6 +227,18 @@ prompt_virtualenv() {
fi fi
} }
# Anaconda: current working conda env
# To replace the conda modification of PS1 do `conda config --set changeps1 False`
# or add 'changeps1: False' to your .condarc file.
prompt_conda() {
local conda_env="$CONDA_DEFAULT_ENV"
if [[ -n $conda_env ]]; then
if [[ -z $CONDA_PROMPT_MODIFIER ]]; then
prompt_segment blue black "conda:$(basename $conda_env)"
fi
fi
}
# Status: # Status:
# - was there an error # - was there an error
# - am I root # - am I root
@ -258,6 +270,7 @@ prompt_aws() {
build_prompt() { build_prompt() {
RETVAL=$? RETVAL=$?
prompt_status prompt_status
prompt_conda
prompt_virtualenv prompt_virtualenv
prompt_aws prompt_aws
prompt_context prompt_context