Skip to content

Commit e3d7473

Browse files
committed
fix(fish): update tmux session handling in shellInit
- Change default tmux session name from "default" to "0" for consistency - Simplify session creation logic by removing explicit session naming
1 parent 987d35f commit e3d7473

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

home-manager/programs/fish/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
shellInit = ''
2121
# for tmux
2222
if type -q tmux && test -z $TMUX && status --is-login
23-
tmux attach-session -t default || tmux new-session -s default
23+
tmux attach-session -t 0 || tmux new-session
2424
end
2525
2626
# suppress fish_greeting

0 commit comments

Comments
 (0)