mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-10 12:19:49 +01:00
Compare commits
No commits in common. "a86c59457c467ac14003d79b58d9f95c1f1ab6b6" and "c1b3900846a26d6c6374a69f162e26ee79550bad" have entirely different histories.
a86c59457c
...
c1b3900846
1 changed files with 2 additions and 2 deletions
|
@ -4,14 +4,14 @@
|
|||
...
|
||||
}: let
|
||||
inherit (lib.options) mkEnableOption mkOption;
|
||||
inherit (lib.types) attrsOf nullOr str;
|
||||
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 (nullOr str);
|
||||
type = attrsOf str;
|
||||
default = {};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue