37 lines
1.1 KiB
Fish
37 lines
1.1 KiB
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
if ! contains -- /opt/homebrew/bin $fish_user_paths
|
|
fish_add_path /opt/homebrew/bin
|
|
end
|
|
end
|
|
|
|
# Added by OrbStack: command-line tools and integration
|
|
# This won't be added again if you remove it.
|
|
source ~/.orbstack/shell/init2.fish 2>/dev/null || :
|
|
|
|
# >>> conda initialize >>>
|
|
# !! Contents within this block are managed by 'conda init' !!
|
|
if test -f /opt/homebrew/Caskroom/miniconda/base/bin/conda
|
|
eval /opt/homebrew/Caskroom/miniconda/base/bin/conda "shell.fish" "hook" $argv | source
|
|
else
|
|
if test -f "/opt/homebrew/Caskroom/miniconda/base/etc/fish/conf.d/conda.fish"
|
|
. "/opt/homebrew/Caskroom/miniconda/base/etc/fish/conf.d/conda.fish"
|
|
else
|
|
set -x PATH "/opt/homebrew/Caskroom/miniconda/base/bin" $PATH
|
|
end
|
|
end
|
|
# <<< conda initialize <<<
|
|
|
|
|
|
# pnpm
|
|
set -gx PNPM_HOME "/Users/marsway/Library/pnpm"
|
|
if not string match -q -- $PNPM_HOME $PATH
|
|
set -gx PATH "$PNPM_HOME" $PATH
|
|
end
|
|
# pnpm end
|
|
|
|
# Added by LM Studio CLI (lms)
|
|
set -gx PATH $PATH /Users/marsway/.lmstudio/bin
|
|
# End of LM Studio CLI section
|
|
|