nix-dotfiles/modules/hm/tmux.nix
2023-07-19 10:42:09 +01:00

12 lines
253 B
Nix

{ pkgs, ... }: {
programs.tmux = {
enable = true;
clock24 = true;
escapeTime = 25;
terminal = "screen-256color";
plugins = with pkgs.tmuxPlugins; [ nord prefix-highlight ];
extraConfig = ''
set -g mouse on
'';
};
}