Skip to content

Commit

Permalink
fix: configure pyenv
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoro9 committed Dec 29, 2021
1 parent 3e175e0 commit 88cc424
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions config/shells/common/settings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,18 @@ export LSCOLORS=gxfxbEaEBxxEhEhBaDaCaD
# GO configuration
export GOPATH=$HOME/go

# Pyenv configuration
export PYENV_ROOT="$HOME/.pyenv"

# Path configuration
export PATH="$HOME/.local/bin:$HOME/.yarn/bin:$HOME/bin:$HOME/.jenv/bin:/usr/local/go/bin:$GOPATH/bin:$HOME/flutter/bin:$PATH"
export PATH="$HOME/.local/bin:$HOME/.yarn/bin:$HOME/bin:$HOME/.jenv/bin:/usr/local/go/bin:$GOPATH/bin:$HOME/flutter/bin:$PYENV_ROOT/bin:$PATH"

# Confiure jenv
eval "$(jenv init -)"

# Configure pyenv
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
eval "$(pyenv init --path)"
fi

# Configure FZF
Expand Down

0 comments on commit 88cc424

Please sign in to comment.