dotfiles/nix/nvim/which-key.nix

16 lines
184 B
Nix
Raw Normal View History

{
configs,
pkgs,
...
}: {
programs.nixvim = {
options = {
timeout = true;
timeoutlen = 300;
};
plugins.which-key = {
enable = true;
};
};
}