mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-05-19 05:24:22 +00:00
18 lines
756 B
Nix
18 lines
756 B
Nix
{
|
|
lib,
|
|
self,
|
|
}: let
|
|
typesDag = import ./dag.nix {inherit lib;};
|
|
typesPlugin = import ./plugins.nix {inherit lib self;};
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
|
typesLsp = import ./lsp.nix {inherit lib;};
|
|
typesDiagnostics = import ./diagnostics.nix {inherit lib;};
|
|
customTypes = import ./custom.nix {inherit lib;};
|
|
in {
|
|
inherit (typesDag) dagOf;
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
|
|
inherit (typesLanguage) mkGrammarOption mkTreesitterGrammarOption;
|
|
inherit (typesLsp) mkLspPresetEnableOption;
|
|
inherit (typesDiagnostics) mkDiagnosticsPresetEnableOption;
|
|
inherit (customTypes) char hexColor mergelessListOf deprecatedSingleOrListOf enumWithRename;
|
|
}
|