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