Files
dotfiles/nix/users/luca/tmux.nix
2025-06-14 14:47:33 -07:00

17 lines
308 B
Nix

{ 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;
}