nvf/lib/types/default.nix
NotAShelf ff77a97637 treewide: Use nixpkgs fetchers for npins
plugins: switch from neodev to lazydev
2025-02-11 18:26:02 -07:00

11 lines
493 B
Nix

{lib}: let
typesDag = import ./dag.nix {inherit lib;};
typesPlugin = import ./plugins.nix {inherit lib;};
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 mkEnableTreesitterOption;
inherit (customTypes) char hexColor mergelessListOf;
}