1
Fork 0
nixos-system-config/modules/packages/tmux.nix
caem af0078d7af
Refactor configuration to be more modular.
TODO: Update the documentation in the README to reflect changes
2024-08-26 15:01:33 +02:00

16 lines
317 B
Nix

{ ... }:
{
# TODO: Port changes over from dots and streamline workflow
programs.tmux = {
enable = true;
prefix = "C-Space";
customPaneNavigationAndResize = true;
baseIndex = 1;
extraConfig = ''
bind v split-window -v
bind c split-window -h
bind n new-window
'';
};
}