From e02f44b6828a01e7dc3a91fdddd7951a29dc6469 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Wed, 17 Apr 2024 17:14:27 -0700 Subject: [PATCH] Update keybinds --- tmux.conf | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/tmux.conf b/tmux.conf index 6198618..25682ea 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,10 +1,16 @@ bind-key r source-file "~/.tmux.conf" -bind-key h select-pane -L -bind-key j select-pane -D -bind-key k select-pane -U -bind-key l select-pane -R -bind-key space last-pane +bind-key -n c-left select-pane -L +bind-key -n c-down select-pane -D +bind-key -n c-up select-pane -U +bind-key -n c-right select-pane -R + +bind-key -n m-left resize-pane -L +bind-key -n m-down resize-pane -D +bind-key -n m-up resize-pane -U +bind-key -n m-right resize-pane -R + +bind-key -n m-\; last-pane bind-key s split-window bind-key v split-window -h