Files
dotfiles/home-manager/home-tmux.nix
2023-06-11 14:12:04 -04:00

19 lines
463 B
Nix

pkgs: {
baseIndex = 1;
clock24 = true;
enable = true;
escapeTime = 0;
keyMode = "vi";
mouse = true;
plugins = [{
plugin = pkgs.tmuxPlugins.catppuccin;
extraConfig = "set -g @catppuccin_window_tabs_enabled on";
}];
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
'';
}