neovim-flake/lib/types/default.nix

14 lines
367 B
Nix
Raw Normal View History

2024-04-08 02:28:49 +02:00
{
inputs,
lib,
...
}: let
2023-03-31 16:42:15 +02:00
typesDag = import ./dag.nix {inherit lib;};
2024-04-08 02:28:49 +02:00
typesPlugin = import ./plugins.nix {inherit inputs lib;};
typesLanguage = import ./languages.nix {inherit lib;};
2023-03-31 16:42:15 +02:00
in {
inherit (typesDag) dagOf;
2024-03-16 10:29:07 +01:00
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline;
2023-04-17 23:55:27 +02:00
inherit (typesLanguage) diagnostics mkGrammarOption;
2023-03-31 16:42:15 +02:00
}