modules/tmux: enable mouse support

This commit is contained in:
fleaz 2025-04-02 21:26:49 +02:00
parent 57715094e1
commit 9902b4715c

View file

@ -2,6 +2,7 @@
programs.tmux = { programs.tmux = {
enable = true; enable = true;
keyMode = "vi"; keyMode = "vi";
mouse = true;
escapeTime = 0; escapeTime = 0;
plugins = [ plugins = [
pkgs.tmuxPlugins.gruvbox pkgs.tmuxPlugins.gruvbox
@ -14,7 +15,6 @@
bind -n M-l select-pane -R bind -n M-l select-pane -R
bind -n M-k select-pane -U bind -n M-k select-pane -U
bind -n M-j select-pane -D bind -n M-j select-pane -D
''; '';
}; };