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

19 lines
256 B
Nix
Raw Normal View History

2024-03-24 17:39:49 -05:00
{
config,
lib,
2024-03-24 17:39:49 -05:00
pkgs,
...
}: {
config = lib.mkIf config.user.nvim.enable {
programs.nixvim = {
opts = {
timeout = true;
timeoutlen = 300;
};
plugins.which-key = {
enable = true;
};
2024-03-24 17:39:49 -05:00
};
};
}