From 07359e71b4cb2c3ca28cb2ba8a58fe36e707aa4b Mon Sep 17 00:00:00 2001 From: Andre Ramnitz Date: Mon, 11 Mar 2024 22:34:30 +0100 Subject: [PATCH] tmux: add config --- config/tmux/tmux.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config/tmux/tmux.conf diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf new file mode 100644 index 00000000..8522efdb --- /dev/null +++ b/config/tmux/tmux.conf @@ -0,0 +1,14 @@ +set -s escape-time 0 +set -g base-index 1 + +set-option -g prefix C-a + +# hjkl pane traversal +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +bind C-n new-window +bind C-M kill-window + -- 2.51.2