diff --git a/zshrc b/zshrc index fef0553..a425961 100644 --- a/zshrc +++ b/zshrc @@ -164,3 +164,11 @@ if [ -f $HOME/.asdf/asdf.sh ]; then else echo "Warning: asdf not found, skipping" fi + +# pnpm +export PNPM_HOME="/home/rob/.local/share/pnpm" +case ":$PATH:" in + *":$PNPM_HOME:"*) ;; + *) export PATH="$PNPM_HOME:$PATH" ;; +esac +# pnpm end