configuration.nix/modules/home/programs/tmux/default.nix
2024-04-22 19:49:39 +03:00

13 lines
261 B
Nix

{ pkgs, ... }: {
programs.tmux = {
enable = true;
clock24 = true;
baseIndex = 1;
escapeTime = 0;
keyMode = "vi";
shell = "\${SHELL}";
terminal = "screen-256color";
plugins = with pkgs.tmuxPlugins; [ tilish catppuccin ];
};
}