configuration.nix/home/modules/programs/tmux/default.nix

16 lines
350 B
Nix
Raw Normal View History

2023-11-18 11:39:46 +01:00
{ pkgs, ... }: {
2023-08-09 22:10:48 +02:00
programs.tmux = {
enable = true;
clock24 = true;
2024-04-22 18:47:31 +02:00
baseIndex = 1;
escapeTime = 0;
keyMode = "vi";
shell = "\${SHELL}";
terminal = "screen-256color";
2023-08-09 22:10:48 +02:00
plugins = with pkgs.tmuxPlugins; [ tilish catppuccin ];
2024-04-22 18:54:57 +02:00
extraConfig = ''
set-option -a terminal-features 'screen-256color:RGB'
'';
2023-08-09 22:10:48 +02:00
};
}