nix-dotfiles/modules/tmux.nix

16 lines
269 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
'';
};
}