mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-10 00:49:48 +01:00
15 lines
496 B
Nix
15 lines
496 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
typesDag = import ./dag.nix {inherit lib;};
|
|
typesPlugin = import ./plugins.nix {inherit inputs 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;
|
|
inherit (customTypes) char hexColor mergelessListOf;
|
|
}
|