From 8b3db372be21bbe78f792c1aa459c4dc520431f2 Mon Sep 17 00:00:00 2001 From: doman Date: Wed, 30 Aug 2023 23:11:43 +0200 Subject: [PATCH] tmux --- .config/tmux/tmux.conf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index f16c361..dd1674a 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -24,7 +24,7 @@ bind-key -n M-y copy-mode bind-key -n M-s split-window -h -c "#{pane_current_path}" bind-key -n M-S split-window -v -c "#{pane_current_path}" -bind-key -n M-o split-window -v -c "#{pane_current_path}" -l 10 +bind-key -n M-o split-window -v -c "#{pane_current_path}" -l 6 bind-key -n M-t new-window -c "#{pane_current_path}" bind-key -n M-w kill-window @@ -37,6 +37,12 @@ bind-key M choose-window -F "#{window_index}: #{window_name}" "join-pane -v -t % bind-key o choose-window -F "#{window_index}: #{window_name}" "join-pane -v -l 10 -t %%" bind-key b break-pane +# resize pane +bind H resize-pane -L 5 +bind J resize-pane -D 5 +bind K resize-pane -U 5 +bind L resize-pane -R 5 + # Start windows and panes at 1, not 0 set -g base-index 1 set -g pane-base-index 1