feat(zsh): configure pnpm
This commit is contained in:
parent
de3c475760
commit
42b5446064
8
zshrc
8
zshrc
|
@ -164,3 +164,11 @@ if [ -f $HOME/.asdf/asdf.sh ]; then
|
||||||
else
|
else
|
||||||
echo "Warning: asdf not found, skipping"
|
echo "Warning: asdf not found, skipping"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# pnpm
|
||||||
|
export PNPM_HOME="/home/rob/.local/share/pnpm"
|
||||||
|
case ":$PATH:" in
|
||||||
|
*":$PNPM_HOME:"*) ;;
|
||||||
|
*) export PATH="$PNPM_HOME:$PATH" ;;
|
||||||
|
esac
|
||||||
|
# pnpm end
|
||||||
|
|
Loading…
Reference in New Issue