summaryrefslogtreecommitdiff
path: root/.config/fish/config.fish
blob: 5d33399d233b3ee96720f6eef9c73a1e000b8c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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

# 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