plugins/nvim-lsp: add julials language server

This commit is contained in:
Gaetan Lepage 2023-05-30 08:55:50 +02:00 committed by Gaétan Lepage
parent df25456aaa
commit 40ae629a60
2 changed files with 8 additions and 0 deletions

View file

@ -177,6 +177,13 @@ with lib; let
package = pkgs.nodePackages.vscode-langservers-extracted;
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";
description = "Enable lua LS, for lua";