Attach to TMUX session on startup

This commit is contained in:
Yax 2024-02-21 11:53:26 +01:00
parent c04d756f0f
commit 3e8347e144

View file

@ -121,4 +121,9 @@ if status is-interactive
if type -q direnv
direnv hook fish | source
end
# run tmux session
if not set -q TMUX
tmux attach -t build; or tmux new -s build
end
end