Add .config/fish/conf.d/tmux.fish

This commit is contained in:
Anthony Rodriguez 2024-08-16 01:44:26 +02:00
parent 03ab680f54
commit 6f063c62a7
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -0,0 +1,7 @@
if status is-interactive
and not set -q TMUX
if command -v tmux > /dev/null
exec tmux new-session -As base
end
end