1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-07 21:49:48 +01:00
neovim-flake/modules/plugins/utility/binds/which-key/which-key.nix

19 lines
374 B
Nix
Raw Normal View History

{
config,
lib,
...
}: let
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.types) attrsOf str;
in {
options.vim.binds.whichKey = {
enable = mkEnableOption "which-key keybind helper menu";
register = mkOption {
description = "Register label for which-key keybind helper menu";
type = attrsOf str;
default = {};
};
};
}