11 lines
204 B
Nix
11 lines
204 B
Nix
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
clock24 = true;
|
|
keyMode = "vi";
|
|
customPaneNavigationAndResize = true; # use hjkl
|
|
mouse = true;
|
|
prefix = "C-Space"; # use instead of C-b
|
|
};
|
|
}
|