9 lines
241 B
Bash
9 lines
241 B
Bash
export PYENV_ROOT="$HOME/.pyenv"
|
|
export PATH="$PYENV_ROOT/bin:$PATH"
|
|
eval "$(pyenv init --path)"
|
|
|
|
if [[ -e $HOME/.ssh/id_ed25519 ]]
|
|
then
|
|
command -v keychain > /dev/null && eval $(keychain --eval --quiet --noask $HOME/.ssh/id_ed25519)
|
|
fi
|