From b6df7c4b0e21af2953ab39b3a1cc848b644bebb7 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Thu, 8 Dec 2022 05:05:12 -0500 Subject: [PATCH] [+] autoinit mamba --- scripts/zshrc.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/zshrc.sh b/scripts/zshrc.sh index 6709a7f..82bd7b8 100755 --- a/scripts/zshrc.sh +++ b/scripts/zshrc.sh @@ -135,6 +135,11 @@ mamba-init() unset __mamba_setup } +# Auto init mamba +if command -v 'micromamba' &> /dev/null; then + mamba-init +fi + # Pyenv if command -v 'pyenv' &> /dev/null; then eval "$(pyenv init -)"