diff --git a/.bashrc b/.bashrc index 1aa1bdd..5e146b0 100644 --- a/.bashrc +++ b/.bashrc @@ -366,11 +366,20 @@ export DOTFILES_PATH=$HOME/.dotfiles export PATH=$PATH:$HOME/.local/bin export PATH=$PATH:$HOME/.cargo/bin export PATH=$PATH:$DOTFILES_PATH/bin +export PATH="/usr/bin:$PATH" +# Include spicetify if it exists if [ -d "$HOME/.spicetify" ]; then export PATH=$PATH:$HOME/.spicetify fi +# Include pyenv if it exists +if [ -d "$HOME/.pyenv" ]; then + export PYENV_ROOT="$HOME/.pyenv" + [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" + eval "$(pyenv init - bash)" +fi + # Include pnpm if it exists if [ -d "$HOME/.local/share/pnpm" ]; then export PATH=$PATH:$HOME/.local/share/pnpm