commit ed14bb3310f0f789725af0821d4cd3fad627a0bd
parent 72c28c51ba45ec81c2d7376b23e695853ee828c1
Author: Leah (ctucx) <leah@ctu.cx>
Date: Tue, 12 Oct 2021 11:49:28 +0200
parent 72c28c51ba45ec81c2d7376b23e695853ee828c1
Author: Leah (ctucx) <leah@ctu.cx>
Date: Tue, 12 Oct 2021 11:49:28 +0200
programs/tmux: enable mouse support, use 24h time
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/configurations/programs/cli/tmux.nix b/configurations/programs/cli/tmux.nix @@ -4,8 +4,12 @@ home-manager.users.leah = { programs = { tmux = { - enable = true; - terminal = "xterm-256color"; + enable = true; + clock24 = true; + terminal = "xterm-256color"; + extraConfig = '' + set -g mouse on + ''; }; }; };