devconf/shell/.config/fish/config.fish
Leon Grünewald 8158ddb2a2 Add pnpm
2024-04-22 11:58:09 +02:00

14 lines
397 B
Fish

if status is-interactive
# Commands to run in interactive sessions can go here
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