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

16 lines
309 B
Bash

export PATH=$PATH:~/work/simple_scripts
# 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