devconf/shell/.config/fish/config.fish

15 lines
392 B
Fish
Raw Normal View History

2024-03-11 11:18:02 +00:00
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
2024-04-22 09:58:09 +00:00
# pnpm
2024-04-22 09:58:40 +00:00
set -gx PNPM_HOME "$HOME/.local/share/pnpm"
2024-04-22 09:58:09 +00:00
if not string match -q -- $PNPM_HOME $PATH
set -gx PATH "$PNPM_HOME" $PATH
end
# pnpm end