neovim-flake/lib/types/default.nix

10 lines
277 B
Nix
Raw Normal View History

2023-03-31 16:42:15 +02:00
{lib}: let
typesDag = import ./dag.nix {inherit lib;};
typesPlugin = import ./plugins.nix {inherit lib;};
typesLanguage = import ./languages.nix {inherit lib;};
2023-03-31 16:42:15 +02:00
in {
inherit (typesDag) dagOf;
inherit (typesPlugin) pluginsOpt;
inherit (typesLanguage) diagnostics;
2023-03-31 16:42:15 +02:00
}