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

16 lines
181 B
Nix
Raw Normal View History

2024-03-24 23:39:49 +01:00
{
configs,
pkgs,
...
}: {
programs.nixvim = {
2024-04-05 01:44:59 +02:00
opts = {
2024-03-24 23:39:49 +01:00
timeout = true;
timeoutlen = 300;
};
plugins.which-key = {
enable = true;
};
};
}