25 lines
872 B
Fish
25 lines
872 B
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 <<<
|
|
|