mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
32d231395f
* plugins/visuals(indent-blankline): move to setupOpts * configuration: match indentblankline part with changes
16 lines
480 B
Nix
16 lines
480 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
typesDag = import ./dag.nix {inherit lib;};
|
|
typesPlugin = import ./plugins.nix {inherit inputs lib;};
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
|
typesCustom = import ./custom.nix {inherit lib;};
|
|
in {
|
|
inherit (typesDag) dagOf;
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType;
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
|
inherit (typesCustom) anythingConcatLists char;
|
|
}
|