mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 20:34:32 +02:00
plugins/nvim-lsp: add julials language server
This commit is contained in:
parent
df25456aaa
commit
40ae629a60
2 changed files with 8 additions and 0 deletions
|
@ -177,6 +177,13 @@ with lib; let
|
||||||
package = pkgs.nodePackages.vscode-langservers-extracted;
|
package = pkgs.nodePackages.vscode-langservers-extracted;
|
||||||
cmd = cfg: ["${cfg.package}/bin/vscode-json-language-server" "--stdio"];
|
cmd = cfg: ["${cfg.package}/bin/vscode-json-language-server" "--stdio"];
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "julials";
|
||||||
|
description = "Enable julials, for Julia";
|
||||||
|
# The julia language server has to be installed from julia and thus is not packaged "as is" in
|
||||||
|
# nixpkgs.
|
||||||
|
package = null;
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "lua-ls";
|
name = "lua-ls";
|
||||||
description = "Enable lua LS, for lua";
|
description = "Enable lua LS, for lua";
|
||||||
|
|
|
@ -79,6 +79,7 @@
|
||||||
hls.enable = true;
|
hls.enable = true;
|
||||||
html.enable = true;
|
html.enable = true;
|
||||||
jsonls.enable = true;
|
jsonls.enable = true;
|
||||||
|
julials.enable = true;
|
||||||
lua-ls.enable = true;
|
lua-ls.enable = true;
|
||||||
metals.enable = true;
|
metals.enable = true;
|
||||||
nil_ls.enable = true;
|
nil_ls.enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue