mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-01 12:47:33 +00:00
26 lines
1.0 KiB
Fish
26 lines
1.0 KiB
Fish
# ╭──────────────────────────────────────────────────────────╮
|
|
# │ fish/config.fish │
|
|
# ╰──────────────────────────────────────────────────────────╯
|
|
|
|
test -e "$HOME/.config/fish/alias.fish" &&
|
|
source "$HOME/.config/fish/alias.fish"
|
|
|
|
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
|
|
|
|
# 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
|
|
|