From 6f063c62a7092fcf510e77a59494e4a69e6c964f Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Fri, 16 Aug 2024 01:44:26 +0200 Subject: [PATCH] Add .config/fish/conf.d/tmux.fish --- dot_config/fish/conf.d/tmux.fish | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 dot_config/fish/conf.d/tmux.fish diff --git a/dot_config/fish/conf.d/tmux.fish b/dot_config/fish/conf.d/tmux.fish new file mode 100644 index 0000000..e2ef16a --- /dev/null +++ b/dot_config/fish/conf.d/tmux.fish @@ -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 +