nix-config/users/tacocat/programs/tmux.nix

20 lines
423 B
Nix
Raw Permalink Normal View History

2024-01-03 05:46:27 +00:00
{pkgs, ...}: {
2023-12-30 02:30:08 +00:00
programs.tmux = {
enable = true;
escapeTime = 0;
clock24 = true;
mouse = true;
2024-02-24 19:48:57 +00:00
keyMode = "vi";
2023-12-30 02:30:08 +00:00
newSession = true;
shell = "${pkgs.fish}/bin/fish";
sensibleOnTop = true;
2023-12-30 02:42:01 +00:00
terminal = "tmux-256color";
2024-02-02 16:08:59 +00:00
extraConfig = ''
set -g focus-events on
2024-02-04 22:56:33 +00:00
set -g allow-passthrough on
set -g set-clipboard on
2024-02-24 19:48:57 +00:00
set -sa terminal-features ',foot:RGB'
2024-02-02 16:08:59 +00:00
'';
2023-12-30 02:30:08 +00:00
};
}