From 09c1ce210c04ea4b640993a43619c2c88b23838c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Mon, 1 Apr 2024 19:59:49 +0100 Subject: [PATCH] add extra config --- config/programs/tmux.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/config/programs/tmux.nix b/config/programs/tmux.nix index 1ddc5b5a..10efaa5a 100644 --- a/config/programs/tmux.nix +++ b/config/programs/tmux.nix @@ -19,5 +19,18 @@ ''; } ]; + extraConfig = '' + set-window-option -g automatic-rename on + set-option -g set-titles on + 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 + bind -n S-Left previous-window + bind -n S-Right next-window + set -sg escape-time 0 + set -g mouse on + set -g default-terminal "screen-256color" + ''; }; }