plugins/lsp: add graphql language server

This commit is contained in:
Gaetan Lepage 2023-12-15 09:22:01 +01:00 committed by Gaétan Lepage
parent 41f5b167e7
commit 798cbe99ce
2 changed files with 6 additions and 0 deletions

View file

@ -221,6 +221,11 @@ with lib; let
name = "gopls";
description = "Enable gopls, for Go.";
}
{
name = "graphql";
description = "Enable graphql, for GraphQL.";
package = pkgs.nodePackages.graphql-language-service-cli;
}
{
name = "hls";
description = "Enable haskell language server";

View file

@ -102,6 +102,7 @@
futhark-lsp.enable = true;
gleam.enable = true;
gopls.enable = true;
graphql.enable = true;
hls.enable = true;
html.enable = true;
java-language-server.enable = true;