From bd26fd665edb5e4d4bb5c54fdc810a6eb22ed50f Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Fri, 11 Sep 2020 23:48:33 -0400 Subject: [PATCH] add hjkl navigation to tmux --- .tmux.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index fe88266..cb82a4f 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1 +1,6 @@ set -g default-terminal 'screen-256color' +#attempt to navigate panes like vim +bind -r h select-pane -L # move left +bind -r j select-pane -D # move down +bind -r k select-pane -U # move up +bind -r l select-pane -R # move right