From 362a1b348258cdb116a83ff8b86b9828f5ce8f09 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sun, 5 Nov 2023 20:38:33 +0100 Subject: [PATCH] pinwheel: Reduce resize step for `tmux` panes --- hosts/pinwheel/modules/tmux/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/pinwheel/modules/tmux/default.nix b/hosts/pinwheel/modules/tmux/default.nix index b798902..64b13ed 100644 --- a/hosts/pinwheel/modules/tmux/default.nix +++ b/hosts/pinwheel/modules/tmux/default.nix @@ -49,10 +49,10 @@ bind l select-pane -R # Resize panes - bind -r H resize-pane -L 10 - bind -r J resize-pane -D 10 - bind -r K resize-pane -U 10 - bind -r L resize-pane -R 10 + bind -r H resize-pane -L 5 + bind -r J resize-pane -D 5 + bind -r K resize-pane -U 5 + bind -r L resize-pane -R 5 # Move windows bind -r Left swap-window -t -1 \; select-window -t -1