From db43adbd9327ee71ada7f01cd8b1f3d2ffa207b4 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Fri, 5 Apr 2024 22:11:33 +0200 Subject: [PATCH] Add: base tmux config --- Configs/Tmux/tmux.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Configs/Tmux/tmux.conf diff --git a/Configs/Tmux/tmux.conf b/Configs/Tmux/tmux.conf new file mode 100644 index 0000000..c2e9ecc --- /dev/null +++ b/Configs/Tmux/tmux.conf @@ -0,0 +1,15 @@ + +# reload config file (change file location to your the tmux.conf you want to use) +bind r source-file ~/.tmux.conf + +# Enable mouse control (clickable windows, panes, resizable panes) +#set -g mouse on + +set -g history-limit 100000 + +# switch panes using Alt-arrow without prefix +bind -n M-Left select-pane -L +bind -n M-Right select-pane -R +bind -n M-Up select-pane -U +bind -n M-Down select-pane -D +