From edcd44d3be7edff82d3ee58338ce3bb2a7e55715 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 6 Mar 2024 19:46:30 -0500 Subject: [PATCH] global/tmux: refactor config --- users/modules/global/tmux.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/users/modules/global/tmux.nix b/users/modules/global/tmux.nix index 73475f8..90f36ef 100644 --- a/users/modules/global/tmux.nix +++ b/users/modules/global/tmux.nix @@ -1,12 +1,9 @@ { ... }: { programs.tmux = { enable = true; + mouse = true; clock24 = true; - terminal = "screen-256color"; + terminal = "xterm-256color"; prefix = "C-Space"; - - extraConfig = '' - set -g mouse on - ''; }; }