blob: 5cce2408d4fe52582308c6f1b2d1aaad8e3f3ec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if status is-interactive
starship init fish | source
atuin init fish | sed '/^bind.*_atuin_bind_up/d' | source
end
alias ls exa
alias parallel parallel-moreutils
alias cfg 'git --git-dir $HOME/.cfg --work-tree $HOME'
# 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
|