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

14 lines
314 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;
plugins = with pkgs.tmuxPlugins; [ tilish catppuccin ];
extraConfig = ''
set -g default-command "''${SHELL}"
2024-04-22 18:35:23 +02:00
set -g default-terminal "xterm-256color"
2023-08-09 22:10:48 +02:00
set -g base-index 1
set -s escape-time 0
'';
};
}