Files
dotfiles/nix/users/luca/tmux.nix
2025-01-21 04:32:14 +00:00

17 lines
306 B
Nix
Executable File

{ pkgs, ... }:
{
enable = true;
prefix = "C-Space";
mouse = true;
baseIndex = 1;
sensibleOnTop = true;
keyMode = "vi";
plugins = with pkgs; [{ plugin = tmuxPlugins.tokyo-night-tmux; }];
extraConfig = ''
bind -n M-H previous-window
bind -n M-L next-window
'';
escapeTime = 0;
}