1
0
Fork 0

make python icon yellow in autopyenv

This commit is contained in:
Luca Bilke 2022-08-05 08:58:32 +02:00
parent 360c8247bf
commit 682fea021d
No known key found for this signature in database
GPG Key ID: 7B77C51E8C779E75
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ function chpwd_activate(){
for pydir in $(ls $PYENV_DIR); do
if [[ "$(pwd|sed -e s@/@_@g|cut -c2-)" =~ "^${pydir}$" ]] || [[ "r-$(pwd|sed -e s@/@_@g|cut -c2-)" =~ "^${pydir}(_.+)?$" ]]; then
if [ "x$VIRTUAL_ENV" != "x$PYENV_DIR/$pydir" ]; then
export PS1=" $PS1"
export PS1=" %F{yellow}%F{reset} $PS1"
export VIRTUAL_ENV_DISABLE_PROMPT=1
source "$PYENV_DIR/$pydir/bin/activate"
fi