From 86480ffbf3abec9567a3e5b47adc8eeb2922bb3f Mon Sep 17 00:00:00 2001 From: RealStickman Date: Wed, 9 Dec 2020 21:48:14 +0100 Subject: [PATCH] More stuff in tmux conf --- arch-config/.tmux.conf | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/arch-config/.tmux.conf b/arch-config/.tmux.conf index c960a013..512b2d91 100644 --- a/arch-config/.tmux.conf +++ b/arch-config/.tmux.conf @@ -1,3 +1,33 @@ +################################################### +########## main keybind ########## +################################################### + +# use different keybinding +unbind C-b +set -g prefix C-s +bind C-s send-prefix + +################################################### +########## keybindings ########## +################################################### + +# reload tmux conf +bind r source-file ~/.tmux.conf \; display ".tmux.conf reloaded!" + +# pane movement shortcuts (same as vim) +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +################################################### +########## environment settings ########## +################################################### + +# enable mouse +set -g mouse-utf8 on set -g mouse on + set -ga terminal-overrides ",xterm-termite:Tc" + set -g history-limit 10000