From 8158ddb2a2e692fd819dfef9fb090014273d6d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Gr=C3=BCnewald?= <10533763+dhalucario@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:58:09 +0200 Subject: [PATCH] Add pnpm --- shell/.config/fish/config.fish | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/shell/.config/fish/config.fish b/shell/.config/fish/config.fish index 5ae54fd..de931c8 100644 --- a/shell/.config/fish/config.fish +++ b/shell/.config/fish/config.fish @@ -5,3 +5,10 @@ end # tabtab source for packages # uninstall by removing these lines [ -f ~/.config/tabtab/fish/__tabtab.fish ]; and . ~/.config/tabtab/fish/__tabtab.fish; or true + +# pnpm +set -gx PNPM_HOME "/home/leon/.local/share/pnpm" +if not string match -q -- $PNPM_HOME $PATH + set -gx PATH "$PNPM_HOME" $PATH +end +# pnpm end