-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.fish
More file actions
29 lines (24 loc) · 790 Bytes
/
Copy pathconfig.fish
File metadata and controls
29 lines (24 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
source ~/.config/fish/fish/envrc.fish
source ~/.config/fish/fish/aliases.fish
starship init fish | source
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
if test -f /opt/miniconda3/bin/conda
eval /opt/miniconda3/bin/conda "shell.fish" "hook" $argv | source
else
if test -f "/opt/miniconda3/etc/fish/conf.d/conda.fish"
. "/opt/miniconda3/etc/fish/conf.d/conda.fish"
else
set -x PATH "/opt/miniconda3/bin" $PATH
end
end
# <<< conda initialize <<<
eval "$(/opt/homebrew/bin/brew shellenv)"
# pnpm
set -gx PNPM_HOME "/Users/yanmingzhi/Library/pnpm"
if not string match -q -- $PNPM_HOME $PATH
set -gx PATH "$PNPM_HOME" $PATH
end
# pnpm end
fish_add_path -a /Users/yanmingzhi/.foundry/bin
direnv hook fish | source