blob: 776c443632bbcbe697795600c2f1493193d536a9 (
plain) (
tree)
|
|
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
aggressiveResize = true;
baseIndex = 1;
clock24 = true;
escapeTime = 0;
historyLimit = 100000;
keyMode = "emacs";
mouse = true;
shell = "${pkgs.fish}/bin/fish";
shortcut = "z";
terminal = "tmux-256color";
};
}
|