From 9a1a4dd25dcf64a594e955532d512bf68a782fc3 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Thu, 7 May 2020 12:31:57 +0000 Subject: [PATCH] Add tmux config --- .tmux.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..3005ea4 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,18 @@ +set-option -g prefix C-Space + +bind -r k select-pane -U +bind -r j select-pane -D +bind -r h select-pane -L +bind -r l select-pane -R + +unbind s +unbind h +unbind % # vsplit +unbind '"' # hsplit + +# vim-style splits +bind v split-window -h -c "#{pane_current_path}" +bind s split-window -v -c "#{pane_current_path}" + +# window numbers from 1 +set -g base-index 1