nix-dots/common/tmux/default.nix

27 lines
385 B
Nix
Raw Normal View History

2025-05-16 18:11:06 -05:00
{
config,
lib,
pkgs,
...
}: {
programs.tmux = {
enable = true;
baseIndex = 1;
clock24 = true;
keyMode = "vi";
newSession = true;
resizeAmount = 10;
shortcut = "b";
terminal = "screen-256color";
plugins = with pkgs.tmuxPlugins; [
];
extraConfig = builtins.readFile ./tmux.conf;
customPaneNavigationAndResize = true;
};
}