From f9c491729803827d2c1595a6a8dc41dad3763aaa Mon Sep 17 00:00:00 2001 From: tomit4 Date: Thu, 25 Nov 2021 11:03:55 -0800 Subject: [PATCH] remapped split pane keys in tmux.conf --- .tmux.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 62534d86..56d3eee9 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,3 +1,8 @@ +# Unbinding the prefix from Ctrl-b to Ctrl-x unbind C-b set -g prefix C-x bind C-x send-prefix + +# Splitting the panes with | (vertical) and - (horizontal) +bind + split-window -h +bind - split-window -v