plugins/nvim-lsp: add metals language server (#327)

Co-authored-by: Ninja3047 <1284324+Ninja3047@user.noreply.github.com>
This commit is contained in:
William Tan 2023-04-11 11:51:57 -04:00 committed by GitHub
parent 9fcc9ed65d
commit 693277568f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -232,6 +232,10 @@ with lib; let
};
settings = cfg: {Lua = cfg;};
}
{
name = "metals";
description = "Enable metals, for Scala";
}
{
name = "nil_ls";
description = "Enable nil, for Nix";

View file

@ -55,6 +55,7 @@
html.enable = true;
jsonls.enable = true;
lua-ls.enable = true;
metals.enable = true;
nil_ls.enable = true;
pylsp.enable = true;
pyright.enable = true;