mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 01:05:58 +01:00
7dbd1cd8d1
* modules/completion: rewrite * treewide: remove vsnip, add luasnip * nvim-cmp: add default sorting * nvim-cmp: load after luasnip * lib: fix docs for mergelessListOf * docs: add changelog entires for rewrite * deprecations: add rewrite deprecations * nvim-cmp: clarify in format description * docs: fix option reference in release notes * treewide: remove reduant `// {default = false;}`s * luasnip: add missing `{option}` for option reference * deprecations: add entry for vsnip * nvim-autopairs: use multiline string * nvim-dap: use outer attribute
15 lines
516 B
Nix
15 lines
516 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) anythingConcatLists char hexColor mergelessListOf;
|
|
}
|