dotfiles/nix/nvim/which-key.nix
2024-03-20 00:20:20 -05:00

16 lines
184 B
Nix

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