From 911b7328f7462eaec2fde0416e7217727eb30237 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Sat, 13 Jan 2024 14:19:45 +0000 Subject: [PATCH] add tmux config --- tmux/tmux.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tmux/tmux.conf diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..e7cfe01 --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,11 @@ +# Split panes with \ and - +bind \\ split-window -h -c "#{pane_current_path}" +bind - split-window -v -c "#{pane_current_path}" +# unbind \\ +# unbind - + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R +