configuration.nix/modules/programs/tmux/default.nix
2023-11-18 12:39:46 +02:00

14 lines
313 B
Nix

{ pkgs, ... }: {
programs.tmux = {
enable = true;
clock24 = true;
plugins = with pkgs.tmuxPlugins; [ tilish catppuccin ];
extraConfig = ''
set -g default-command "''${SHELL}"
set -g default-terminal "tmux-256color"
set -g base-index 1
set -s escape-time 0
'';
};
}