From 7028d14141dbab085e84ec6f07bba9a26e4a3345 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Fri, 1 Nov 2024 06:24:14 +0300 Subject: [PATCH] Tmux: Add main-vertical key. --- home/config/tmux/module/Split.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/config/tmux/module/Split.nix b/home/config/tmux/module/Split.nix index 40abf819..7a394fb3 100644 --- a/home/config/tmux/module/Split.nix +++ b/home/config/tmux/module/Split.nix @@ -14,6 +14,7 @@ in bind -n M-= select-layout tiled bind -n M-_ select-layout even-vertical bind -n M-| select-layout even-horizontal + bind -n M-+ select-layout main-vertical bind -n M-k resize-pane -U ${toString stepVertical} bind -n M-j resize-pane -D ${toString stepVertical} bind -n M-h resize-pane -L ${toString stepHorizontal}