nix-configs/hm-imports/tmux/default.nix
2022-03-01 23:53:11 +01:00

16 lines
336 B
Nix

{ config, pkgs,...}:{
programs.tmux = {
enable = true;
keyMode = "vi";
clock24 = true;
historyLimit = 10000;
plugins = with pkgs.tmuxPlugins; [
vim-tmux-navigator
gruvbox
];
extraConfig = ''
new-session -s main
bind-key -n C-a send-prefix
'';
};
}