From 64725c57dc915d6c4931e73312270012d7da79ab Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Fri, 11 Apr 2025 16:31:28 +0300 Subject: [PATCH] chore(config): fish config tweaks --- config/fish/config.fish | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/config/fish/config.fish b/config/fish/config.fish index ed3a597..7529d26 100644 --- a/config/fish/config.fish +++ b/config/fish/config.fish @@ -9,18 +9,21 @@ test -e "$HOME/.config/fish/exports.fish" && source "$HOME/.config/fish/exports.fish" if status is-interactive - # Commands to run in interactive sessions can go here + # Commands to run in interactive shell - # Start tmux if not already running and not in SSH - open-tmux # defined in functions/open-tmux.fish + # version manager initializers + type -q rbenv; and source (rbenv init -|psub) + type -q pyenv; and source (pyenv init -|psub) + type -q pyenv; and source (pyenv virtualenv-init -) + type -q goenv; and source (goenv init -|psub) + # type -q fnm; and fnm env --use-on-cd --shell fish | source + type -q load_nvm; and load_nvm > /dev/stderr + + # Start tmux if not already running and not in SSH + open-tmux # defined in functions/open-tmux.fish end # Added by LM Studio CLI (lms) set -gx PATH $PATH $HOME/.lmstudio/bin -type -q rbenv; and source (rbenv init -|psub) -type -q pyenv; and source (pyenv init -|psub) -type -q goenv; and source (goenv init -|psub) -type -q fnm; and fnm env --use-on-cd --shell fish | source -type -q load_nvm; and load_nvm > /dev/stderr - +# vim: ft=fish ts=4 sw=4 et: