this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(fish): update alias

+13 -1
+13 -1
fish/config.fish
··· 4 4 zoxide init fish | source 5 5 6 6 # Aliases 7 - alias l="exa" 7 + alias l="ls" 8 + alias ls="exa" 8 9 alias lt="exa -T" 9 10 alias lT="exa -Tlh --no-user --no-time" 10 11 alias ll="exa -lh --no-user" ··· 52 53 set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/vendor_completions.d 53 54 end 54 55 end 56 + 57 + # ghcup-env 58 + set -q GHCUP_INSTALL_BASE_PREFIX[1]; or set GHCUP_INSTALL_BASE_PREFIX $HOME 59 + set -gx PATH $HOME/.cabal/bin $PATH /Users/boltless/.ghcup/bin 60 + 61 + # pnpm 62 + set -gx PNPM_HOME "/Users/boltless/Library/pnpm" 63 + if not string match -q -- $PNPM_HOME $PATH 64 + set -gx PATH "$PNPM_HOME" $PATH 65 + end 66 + # pnpm end