home: zsh: launch tmux when starting a shell

This commit is contained in:
Bruno BELANYI 2021-09-30 15:34:16 +02:00
parent 4055ef17f0
commit 24de1890fc
1 changed files with 10 additions and 0 deletions

View File

@ -46,6 +46,16 @@ in
# Modal editing is life, but CLI benefits from emacs gymnastics
defaultKeymap = "emacs";
# Make those happen early to avoid doing double the work
initExtraFirst =
lib.optionalString config.my.home.tmux.enable ''
# Launch tmux unless already inside one
if [ -z "$TMUX" ]; then
exec tmux new-session
fi
''
;
initExtra = lib.concatMapStrings builtins.readFile [
./completion-styles.zsh
./extra-mappings.zsh