Skip to content

Commit

Permalink
Replace individual managers with asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
mphstudios committed May 25, 2023
1 parent d9d69a9 commit e17fa7b
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions tag-bash/bash_profile
Original file line number Diff line number Diff line change
Expand Up @@ -35,28 +35,6 @@ if [ -r ~/.ssh/config ]; then
complete -o "default" -o "nospace" -W "$(grep "^Host" ~/.ssh/config | grep -v "[?*]" | cut -d " " -f2 | tr ' ' '\n')" scp sftp ssh
fi

# Enable Node version management shims
if command -v nodenv 1 >/dev/null 2>&1; then
eval "$(nodenv init -)"
fi

# Enable Python version management shims
# and auto-(de)activation of virtualenvs
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
fi

# Enable Ruby version management shims
if command -v rbenv 1>/dev/null 2>&1; then
eval "$(rbenv init -)"
fi

# Load/unload environment variables based on $PWD
if command -v direnv 1>/dev/null 2>&1; then
eval "$(direnv hook bash)"
fi

# `fuck` corrects errors in previous console commands
if command -v thefuck 1>/dev/null 2>&1; then
eval "$(thefuck --alias)"
Expand Down

0 comments on commit e17fa7b

Please sign in to comment.