plugins/lsp: add dhall-lsp-server (#860)

* lsp.servers: add dhall-lsp-server(dhall language)

tests: add dhall lsp server to tests

squash me

* Update plugins/lsp/language-servers/default.nix

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>

* Update tests/test-sources/plugins/lsp/_lsp.nix

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>

* Update plugins/lsp/language-servers/default.nix

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>

---------

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
This commit is contained in:
Glen 2023-12-30 22:26:50 +00:00 committed by GitHub
parent 9738dae3ea
commit 5fcfb763cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -158,6 +158,11 @@ with lib; let
description = "Enable denols, for Deno";
package = pkgs.deno;
}
{
name = "dhall-lsp-server";
description = "Enable dhall-lsp-server, for Dhall";
serverName = "dhall_lsp_server";
}
{
name = "digestif";
description = "Enable digestif, for LaTeX";

View file

@ -88,6 +88,7 @@
cssls.enable = true;
dartls.enable = true;
denols.enable = true;
dhall-lsp-server.enable = true;
digestif.enable = true;
dockerls.enable = true;
efm.enable = true;