mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/nvim-lsp: add metals language server (#327)
Co-authored-by: Ninja3047 <1284324+Ninja3047@user.noreply.github.com>
This commit is contained in:
parent
9fcc9ed65d
commit
693277568f
2 changed files with 5 additions and 0 deletions
|
@ -232,6 +232,10 @@ with lib; let
|
||||||
};
|
};
|
||||||
settings = cfg: {Lua = cfg;};
|
settings = cfg: {Lua = cfg;};
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "metals";
|
||||||
|
description = "Enable metals, for Scala";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "nil_ls";
|
name = "nil_ls";
|
||||||
description = "Enable nil, for Nix";
|
description = "Enable nil, for Nix";
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
html.enable = true;
|
html.enable = true;
|
||||||
jsonls.enable = true;
|
jsonls.enable = true;
|
||||||
lua-ls.enable = true;
|
lua-ls.enable = true;
|
||||||
|
metals.enable = true;
|
||||||
nil_ls.enable = true;
|
nil_ls.enable = true;
|
||||||
pylsp.enable = true;
|
pylsp.enable = true;
|
||||||
pyright.enable = true;
|
pyright.enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue