mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 18:31:35 +00:00
14 lines
502 B
Nix
14 lines
502 B
Nix
{
|
|
lib,
|
|
self,
|
|
}: let
|
|
typesDag = import ./dag.nix {inherit lib;};
|
|
typesPlugin = import ./plugins.nix {inherit lib self;};
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
|
customTypes = import ./custom.nix {inherit lib;};
|
|
in {
|
|
inherit (typesDag) dagOf;
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
|
|
inherit (typesLanguage) diagnostics mkGrammarOption mkServersOption;
|
|
inherit (customTypes) char hexColor mergelessListOf;
|
|
}
|