nix-config/modules/home-manager/nvim/which-key.nix

17 lines
235 B
Nix

{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.user.nvim.enable {
programs.nixvim = {
opts = {
timeout = true;
timeoutlen = 300;
};
plugins.which-key.enable = true;
};
};
}