From d58d84282cf2fec848b80d55a69a0e94c180254e Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 28 Feb 2022 00:43:12 -0500 Subject: [PATCH] tweak(tmux): enable mouse support --- users/profiles/tmux.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/users/profiles/tmux.nix b/users/profiles/tmux.nix index 384d9a0..73475f8 100644 --- a/users/profiles/tmux.nix +++ b/users/profiles/tmux.nix @@ -4,5 +4,9 @@ clock24 = true; terminal = "screen-256color"; prefix = "C-Space"; + + extraConfig = '' + set -g mouse on + ''; }; }