nvf/modules/utility/binds/which-key/which-key.nix
2023-04-02 19:16:04 +03:00

12 lines
141 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.binds.whichKey = {
enable = mkEnableOption "which-key menu";
};
}