Files
nixos/home/tmux.nix

16 lines
294 B
Nix

{ pkgs, ... }:
{
programs.tmux = {
enable = true;
escapeTime = 0;
mouse = true;
extraConfig = ''
set -g default-terminal "screen-256color"
set -g @catppuccin_flavor 'mocha'
'';
plugins = with pkgs; [
tmuxPlugins.catppuccin
];
};
}