mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 16:56:11 +01:00
15 lines
259 B
Nix
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
|
|
];
|
|
};
|
|
}
|