From 1278dfe3f20c301d9c41ce351d88a98fcb8501c7 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sat, 9 Apr 2022 18:55:28 -0400 Subject: [PATCH] tmux: better mouse --- home/tmux.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/tmux.nix b/home/tmux.nix index 16e3188..636fd24 100644 --- a/home/tmux.nix +++ b/home/tmux.nix @@ -1,3 +1,4 @@ +{pkgs, ...}: { programs.tmux = { enable = true; @@ -10,6 +11,10 @@ # Force tmux to use /tmp for sockets (WSL2 compat) secureSocket = false; + plugins = with pkgs; [ + tmuxPlugins.better-mouse-mode + ]; + extraConfig = '' # Mouse works as expected set-option -g mouse on