blob: e7076c46f01e90476ddf02751cbee5bd467243fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
if status is-interactive
starship init fish | source
end
alias ls exa
# pnpm
set -gx PNPM_HOME "/home/samn/.local/share/pnpm"
if not string match -q -- $PNPM_HOME $PATH
set -gx PATH "$PNPM_HOME" $PATH
end
# pnpm end
|