From 24b37a2903358df8862ddd478739d07d0e320825 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Mon, 12 May 2025 08:42:36 +0200 Subject: [PATCH] chore(morty): create tmux keybindings for shortcuts --- hosts/work/home-config.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/work/home-config.nix b/hosts/work/home-config.nix index 4ba15cc..70820e8 100644 --- a/hosts/work/home-config.nix +++ b/hosts/work/home-config.nix @@ -19,7 +19,14 @@ }; neovim.enable = true; starship.enable = true; - tmux.enable = true; + tmux = { + enable = true; + extraConfig = '' + bind -n M-F9 run 'create-tmux-session -n quipu -p quipuapp "run:nvim ." project:quipu-infrastructure neww:quipu-infra project:sellsy hsplit:50 run:k9s project:charts neww:charts' + bind -n M-F8 run 'create-tmux-session -n verifactu -p verifactu "run:nvim ." project:verifactu-infrastructure neww:verifactu-infra project:sellsy hsplit:50 run:k9s project:charts neww:charts' + ''; + }; + utils.enable = true; vifm.enable = true; zellij.enable = true;