From a954f2b5888d6e802f3b1f4632b8dca613e2033c Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 15 Jan 2026 21:11:31 +0000 Subject: [PATCH] feat(zshenv): add pnpm setup to environment configuration --- zshenv | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zshenv b/zshenv index 0eb0a2a..6d75497 100644 --- a/zshenv +++ b/zshenv @@ -354,6 +354,10 @@ fi # Use custom tmux install if available path_prepend "/opt/tmux/bin" +# pnpm setup +export PNPM_HOME="$HOME/.local/share/pnpm" +path_prepend "$PNPM_HOME" + # Rust setup export RUSTUP_HOME="$HOME/.rustup" export CARGO_HOME="$HOME/.cargo"