Start tmux automatically (#95)

This commit is contained in:
Patrick Stevens
2024-11-20 18:29:59 +00:00
committed by GitHub
parent 6c3bdcc4b2
commit 6d3804a5ee
2 changed files with 5 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
family = "FiraCode Nerd Font Mono";
};
};
terminal = {shell = "${pkgs.zsh}/bin/zsh";};
};
};

View File

@@ -30,3 +30,7 @@ bindkey '^X^E' edit-command-line
bindkey -e
PATH="$PATH:$HOME/.cargo/bin"
if [[ -z "$TMUX" ]]; then
tmux new-session -A -s default
fi