formatting + pnpm add

This commit is contained in:
Daylin Morgan 2022-06-04 11:46:08 -05:00
parent a127eb118c
commit 1e606eaeb5
2 changed files with 14 additions and 9 deletions

View file

@ -88,10 +88,15 @@ if is-executable shiv; then
fi fi
# pyenv # pyenv
if [ -d "$HOME/.pyenv" ];then if [ -d "$HOME/.pyenv" ]; then
export PYENV_VIRTUALENV_DISABLE_PROMPT=1 export PYENV_VIRTUALENV_DISABLE_PROMPT=1
export PYENV_ROOT="$HOME/.pyenv" export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH" export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)" eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)" eval "$(pyenv virtualenv-init -)"
fi fi
# pnpm
export PNPM_HOME="/home/daylin/.local/share/pnpm"
export PATH="$PNPM_HOME:$PATH"
# pnpm end