mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-01 18:47:40 +00:00
14 lines
712 B
Fish
14 lines
712 B
Fish
# ╭──────────────────────────────────────────────────────────╮
|
|
# │ fish/config.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
|