dotfiles/zshrc: switch from asdf to rtx

This commit is contained in:
Alan Orth 2023-03-20 14:14:48 +03:00
parent 50fab353e2
commit 113496cc2b
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 3 additions and 3 deletions

View File

@ -58,9 +58,9 @@ if [[ "$OSTYPE" =~ ^linux.*$ ]]; then
export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring
fi
# Enable asdf version manager zsh completions
if [[ -f /opt/asdf-vm/asdf.sh ]]; then
. /opt/asdf-vm/asdf.sh
# Enable zsh completions for rtx version manager
if [[ -f /usr/bin/rtx ]]; then
eval "$(/usr/bin/rtx activate zsh)"
fi
alias ls='ls -F --color=auto'