mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 22:55:58 +01:00
901363d1ac
* treewide: refactor custom lib, merge lists in hm/nixos module * lib/types(custom): clarify anythingConcatLists code --------- Co-authored-by: raf <raf@notashelf.dev>
15 lines
475 B
Nix
15 lines
475 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
typesDag = import ./dag.nix {inherit lib;};
|
|
typesPlugin = import ./plugins.nix {inherit inputs lib;};
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
|
typesCustom = import ./custom.nix {inherit lib;};
|
|
in {
|
|
inherit (typesDag) dagOf;
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType;
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
|
inherit (typesCustom) anythingConcatLists;
|
|
}
|