nix-dotfiles/modules/tmux.nix
2021-05-22 14:49:06 +02:00

21 lines
360 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"
};
}