mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-09 16:39:51 +01:00
Compare commits
1 commit
e3b624887c
...
31f3c7548c
Author | SHA1 | Date | |
---|---|---|---|
|
31f3c7548c |
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
{lib, ...}: let
|
{lib, ...}: let
|
||||||
inherit (lib.options) mkEnableOption mkOption literalMD;
|
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.types) mkPluginSetupOption luaInline;
|
||||||
inherit (lib.nvim.binds) mkMappingOption;
|
inherit (lib.nvim.binds) mkMappingOption;
|
||||||
inherit (lib.nvim.config) mkBool;
|
inherit (lib.nvim.config) mkBool;
|
||||||
|
@ -37,9 +37,9 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
cmdline = mkOption {
|
cmdline = mkOption {
|
||||||
type = nullOr (listOf str);
|
type = listOf str;
|
||||||
default = [];
|
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 {
|
providers = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue