mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 14:56:00 +01:00
lib/languages: add mkLspConfig
mkLspConfig generates lspConfig attribute for languagae modules from structured arguments.
This commit is contained in:
parent
c4dbf87dee
commit
bd2743fb45
1 changed files with 28 additions and 0 deletions
|
@ -3,7 +3,11 @@
|
||||||
inherit (builtins) isString getAttr;
|
inherit (builtins) isString getAttr;
|
||||||
inherit (lib.options) mkOption;
|
inherit (lib.options) mkOption;
|
||||||
inherit (lib.types) bool;
|
inherit (lib.types) bool;
|
||||||
|
inherit (lib.meta) getExe;
|
||||||
|
inherit (lib.lists) isList optionals;
|
||||||
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.attrsets) mapListToAttrs;
|
inherit (lib.nvim.attrsets) mapListToAttrs;
|
||||||
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
in {
|
in {
|
||||||
# A wrapper around `mkOption` to create a boolean option that is
|
# A wrapper around `mkOption` to create a boolean option that is
|
||||||
# used for Language Server modules.
|
# used for Language Server modules.
|
||||||
|
@ -36,4 +40,28 @@ in {
|
||||||
value = diagnosticsProviders.${type}.nullConfig package;
|
value = diagnosticsProviders.${type}.nullConfig package;
|
||||||
})
|
})
|
||||||
config;
|
config;
|
||||||
|
|
||||||
|
# `mkLspConfig` is a helper function that generates a LspConfig configuration
|
||||||
|
# from at least a name and a package, optionally also `capabilities`, and
|
||||||
|
# `on_attach`.
|
||||||
|
# TODO: nixpkgs-like doc comments from that one RFC
|
||||||
|
mkLspConfig = {
|
||||||
|
name,
|
||||||
|
package,
|
||||||
|
args ? [],
|
||||||
|
cmd ? [(getExe package)] ++ lib.optionals (args != []) args,
|
||||||
|
capabilities ? "capabilities",
|
||||||
|
on_attach ? "on_attach",
|
||||||
|
}: let
|
||||||
|
generatedConfig = {
|
||||||
|
inherit cmd;
|
||||||
|
capabilities = mkLuaInline capabilities;
|
||||||
|
on_attach = mkLuaInline on_attach;
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
inherit package;
|
||||||
|
lspConfig = ''
|
||||||
|
lspconfig.${name}.setup(${toLuaObject generatedConfig})
|
||||||
|
'';
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue