summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2026-02-28 12:33:31 +0100
committerSkladnayazebra <skladnayazebra@gmail.com>2026-02-28 12:33:31 +0100
commitbce998d131af455f846e5b0555d96b28ef30c244 (patch)
tree570fa776779745d4ac25991e67868d1ce784db4a /zsh
parent24d5824420adb03cdb2b1e1f0227c26b79590adb (diff)
add pnpm homedir (for pnpm link to work)
Diffstat (limited to 'zsh')
-rw-r--r--zsh/pnpm.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/zsh/pnpm.zsh b/zsh/pnpm.zsh
index ad44e82..6b6b890 100644
--- a/zsh/pnpm.zsh
+++ b/zsh/pnpm.zsh
@@ -26,3 +26,9 @@ if type compdef &>/dev/null; then
fi
###-end-pnpm-completion-###
+# pnpm homedir
+export PNPM_HOME="/home/work/.local/share/pnpm"
+case ":$PATH:" in
+ *":$PNPM_HOME:"*) ;;
+ *) export PATH="$PNPM_HOME:$PATH" ;;
+esac