nix-config/terminal/nvim/which-key.nix

16 lines
184 B
Nix
Raw Normal View History

2024-03-24 17:39:49 -05:00
{
configs,
pkgs,
...
}: {
programs.nixvim = {
options = {
timeout = true;
timeoutlen = 300;
};
plugins.which-key = {
enable = true;
};
};
}