Files
dotfiles/home-manager/home-tmux.nix
2023-06-10 14:43:40 -04:00

16 lines
370 B
Nix

pkgs: {
baseIndex = 1;
clock24 = true;
enable = true;
escapeTime = 0;
keyMode = "vi";
mouse = true;
plugins = [pkgs.tmuxPlugins.catppuccin];
shortcut = "Space";
tmuxinator.enable = true;
extraConfig = ''
bind-key -T copy-mode-vi 'v' send -X begin-selection
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel
'';
}