Update .zshrc

This commit is contained in:
Santiago Lo Coco 2023-10-06 22:58:47 -03:00
parent 24fe38ba0f
commit cbfbbd05c2
1 changed files with 10 additions and 0 deletions

View File

@ -78,3 +78,13 @@ bracketed-paste() {
} }
zle -N bracketed-paste zle -N bracketed-paste
export MAMBA_EXE='/usr/bin/micromamba';
export MAMBA_ROOT_PREFIX="$HOME/.conda";
__mamba_setup="$("$MAMBA_EXE" shell hook --shell zsh --root-prefix "$MAMBA_ROOT_PREFIX" 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__mamba_setup"
else
alias micromamba="$MAMBA_EXE"
fi
unset __mamba_setup