From a052a2d5081e1740cd6ee17b814db46ea752134f Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Mon, 7 Oct 2024 07:55:29 -0500 Subject: [PATCH] Tmux: h for horiz split, v for vertical split --- tmux.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tmux.nix b/tmux.nix index dd4bcc9..2ebd278 100644 --- a/tmux.nix +++ b/tmux.nix @@ -5,5 +5,11 @@ keyMode = "vi"; prefix = "C-s"; baseIndex = 1; + extraConfig = '' + unbind '"' + unbind % + bind h split-window -h + bind v split-window -v + ''; }; }