plugins/lsp: add marksman language server (#867)

This commit is contained in:
Markus Lohmayer 2023-12-31 21:32:33 +01:00 committed by GitHub
parent 5fcfb763cd
commit 2bcdcfafe5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -352,6 +352,11 @@ with lib; let
}; };
settings = cfg: {Lua = cfg;}; settings = cfg: {Lua = cfg;};
} }
{
name = "marksman";
description = "Enable marksman, for Markdown";
package = pkgs.marksman;
}
{ {
name = "metals"; name = "metals";
description = "Enable metals, for Scala"; description = "Enable metals, for Scala";

View file

@ -111,6 +111,7 @@
leanls.enable = true; leanls.enable = true;
ltex.enable = true; ltex.enable = true;
lua-ls.enable = true; lua-ls.enable = true;
marksman.enable = true;
metals.enable = true; metals.enable = true;
nil_ls.enable = true; nil_ls.enable = true;
nixd.enable = true; nixd.enable = true;