.s/scripts/machine-specific-zsh/rainsllamas.zsh
2023-03-15 11:37:52 -06:00

14 lines
268 B
Bash

# asdf
[ -f /opt/asdf-vm/asdf.sh ] && . /opt/asdf-vm/asdf.sh
# thefuck
eval $(thefuck --alias)
# Pyenv
if [ -d "$HOME/.pyenv" ]
then
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
fi