Compare commits

..

1 commit

Author SHA1 Message Date
Ching Pei Yang
31f3c7548c
Merge c2185f25df into b6a49b299a 2024-12-26 18:21:09 +01:00

View file

@ -1,6 +1,6 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption mkOption literalMD;
inherit (lib.types) listOf str either attrsOf submodule enum anything int nullOr;
inherit (lib.types) listOf str either attrsOf submodule enum anything int;
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
inherit (lib.nvim.binds) mkMappingOption;
inherit (lib.nvim.config) mkBool;
@ -37,9 +37,9 @@ in {
};
cmdline = mkOption {
type = nullOr (listOf str);
type = listOf str;
default = [];
description = "List of sources to enable for cmdline. Null means use default source list.";
description = "List of sources to enable for cmdline";
};
providers = mkOption {