.s/scripts/machine-specific-zsh/rainsllamas.zsh

16 lines
309 B
Bash
Raw Normal View History

2023-03-15 13:42:48 -04:00
export PATH=$PATH:~/work/simple_scripts
2023-03-15 13:37:52 -04:00
# 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