From 2f3ae51ae986b787e9bf4c86e79257d426653430 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Fri, 28 Mar 2025 23:13:16 -0700 Subject: [PATCH] Cleanup tmux config --- nix/modules/tmux.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nix/modules/tmux.nix b/nix/modules/tmux.nix index 94557fe..744a8d6 100644 --- a/nix/modules/tmux.nix +++ b/nix/modules/tmux.nix @@ -2,11 +2,13 @@ { programs.tmux = { enable = true; - mouse = true; + mouse = false; + shell = "${pkgs.fish}/bin/fish"; shortcut = "s"; baseIndex = 1; keyMode = "vi"; customPaneNavigationAndResize = true; + terminal = "xterm-256color"; plugins = with pkgs; [ tmuxPlugins.sensible @@ -29,6 +31,8 @@ set-option -g status-fg '#aaaaaa' # Toggle mouse-mode bind m set-window-option mouse + +set-option -g default-command ${pkgs.fish}/bin/fish ''; }; }