.vvconfig/.config/fish/config.fish

48 lines
1.5 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
# Hermes Agent — ensure ~/.local/bin is on PATH
fish_add_path "$HOME/.local/bin"
# >>> otty shell integration >>>
# Added by Otty — toggle in Settings > Shell > Shell Integration.
# Inert unless launched by Otty (it sets $OTTY_SHELL_INTEGRATION).
if test -n "$OTTY_SHELL_INTEGRATION" -a -r "$OTTY_SHELL_INTEGRATION/otty-integration.fish"
source "$OTTY_SHELL_INTEGRATION/otty-integration.fish"
end
# <<< otty shell integration <<<