1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2025-10-17 19:41:01 +00:00

Initialize pyenv if installed

This commit is contained in:
Holger Just 2020-10-08 16:39:47 +02:00
parent fed0941208
commit 46eedc18dd

View File

@ -149,6 +149,11 @@ export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" --no-use
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
# pyenv
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
# Appliction config
export PLANIO_SKIP_AMA=1