nix-dotfiles/modules/tmux.nix
2021-05-22 17:16:22 +02:00

20 lines
359 B
Nix

{ pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
escapeTime = 25;
plugins = with pkgs; [
tmuxPlugins.continuum
tmuxPlugins.prefix-highlight
tmuxPlugins.nord
];
extraConfig = ''
set -g mouse on
'';
# set -g default-terminal "screen"
# set -ga terminal-overrides ",col:Tc"
};
}