From 113496cc2b946b103ea32a1959a3fe21344d23cc Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 20 Mar 2023 14:14:48 +0300 Subject: [PATCH] dotfiles/zshrc: switch from asdf to rtx --- dotfiles/zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dotfiles/zshrc b/dotfiles/zshrc index be0ac88..0f64b5f 100644 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -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'