Compare commits

...

2 commits

Author SHA1 Message Date
Ching Pei Yang
0b2fa2e38a
lazy: remove defaults for keys 2024-11-10 23:57:00 +01:00
Ching Pei Yang
929f6ca3bc
lazy: remove redundant submodule 2024-11-10 23:40:23 +01:00

View file

@ -36,7 +36,6 @@
mode = mkOption { mode = mkOption {
description = "Modes to bind in"; description = "Modes to bind in";
type = either str (listOf str); type = either str (listOf str);
default = ["n" "x" "s" "o"];
}; };
silent = mkBool true "Whether this mapping should be silent. Equivalent to adding <silent> to a map."; silent = mkBool true "Whether this mapping should be silent. Equivalent to adding <silent> to a map.";
@ -62,7 +61,7 @@
}; };
setupOpts = mkOption { setupOpts = mkOption {
type = submodule {freeformType = attrsOf anything;}; type = attrsOf anything;
description = "Options to pass to the setup function"; description = "Options to pass to the setup function";
default = {}; default = {};
}; };