From da0559bd677f72697a87b885aa9d7052fef2cfe4 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 5 Dec 2023 18:01:46 -0700 Subject: [PATCH] Initial addition of tmux config --- dot_tmux.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 dot_tmux.conf diff --git a/dot_tmux.conf b/dot_tmux.conf new file mode 100644 index 0000000..cd88653 --- /dev/null +++ b/dot_tmux.conf @@ -0,0 +1,18 @@ +bind-key h select-pane -L +bind-key j select-pane -D +bind-key k select-pane -U +bind-key l select-pane -R + +# nested tmux, obey me +bind-key a send-prefix + +# Avoid the annoying bit of delay when using the control character +set -g escape-time 0 +set -g renumber-windows on + +# bind Ctrl-k to clearing history +bind-key c clear-history + +# Show a visual bell, even on other windows +set-window-option -g visual-bell both +set-window-option -g bell-action other