This commit is contained in:
2023-09-28 12:21:01 +02:00
parent 7e3ad70840
commit e2772e383c
17 changed files with 517 additions and 722 deletions

19
.zshrc
View File

@@ -36,4 +36,21 @@ if [ -f ~/.bash_aliases ]; then
fi
eval $(thefuck --alias)
alias discord="export GDK_BACKEND=wayland && discord-canary"
#alias discord="export GDK_BACKEND=wayland && discord-canary"
# >>> mamba initialize >>>
# !! Contents within this block are managed by 'mamba init' !!
export MAMBA_EXE="/usr/bin/micromamba";
export MAMBA_ROOT_PREFIX="/home/rhiobet/.mamba";
__mamba_setup="$("$MAMBA_EXE" shell hook --shell zsh --prefix "$MAMBA_ROOT_PREFIX" 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__mamba_setup"
else
if [ -f "/home/rhiobet/.mamba/etc/profile.d/micromamba.sh" ]; then
. "/home/rhiobet/.mamba/etc/profile.d/micromamba.sh"
else
export PATH="/home/rhiobet/.mamba/bin:$PATH" # extra space after export prevents interference from conda init
fi
fi
unset __mamba_setup
# <<< mamba initialize <<<