Files
nix-config/home-manager/features/tmux.nix
2024-04-20 11:50:40 +02:00

15 lines
259 B
Nix

{pkgs, ...}: {
programs.tmux = {
enable = true;
mouse = true;
prefix = "C-Space";
keyMode = "vi";
terminal = "screen-256color";
plugins = with pkgs.tmuxPlugins; [
sensible
vim-tmux-navigator
gruvbox
];
};
}