From b2234868cf565f174f54786f7d62dcf89f81c862 Mon Sep 17 00:00:00 2001 From: Nigel Barink Date: Tue, 2 Apr 2024 19:21:33 +0000 Subject: [PATCH] FEAT: Add sane keybinds for splitting window --- tmux/.tmux.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 822184c..4bd22c0 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -1,3 +1,9 @@ +########################################################## +## ## +## My TMUX Config ## +## ## +########################################################## + # Rebind the prefix key unbind C-b set-option -g prefix C-s @@ -7,6 +13,8 @@ bind-key -n 'M-h' select-pane -L bind-key -n 'M-j' select-pane -D bind-key -n 'M-k' select-pane -U bind-key -n 'M-l' select-pane -R +bind h split-window -h +bind v split-window -v # set Status bar options set-option -g status-position top