plugins/nvim-lsp: add yamlls language server (#326)

Co-authored-by: Ninja3047 <1284324+Ninja3047@user.noreply.github.com>
This commit is contained in:
William Tan 2023-04-11 11:49:32 -04:00 committed by GitHub
parent b6706fa0ec
commit 9fcc9ed65d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -321,6 +321,11 @@ with lib; let
description = "Enable vuels, for Vue"; description = "Enable vuels, for Vue";
package = pkgs.nodePackages.vls; package = pkgs.nodePackages.vls;
} }
{
name = "yamlls";
description = "Enable yamlls, for yaml";
package = pkgs.yaml-language-server;
}
{ {
name = "zls"; name = "zls";
description = "Enable zls, for Zig."; description = "Enable zls, for Zig.";

View file

@ -66,6 +66,7 @@
tsserver.enable = true; tsserver.enable = true;
typst-lsp.enable = true; typst-lsp.enable = true;
vuels.enable = true; vuels.enable = true;
yamlls.enable = true;
# zls.enable = true; Broken as of 03/17/2023 # zls.enable = true; Broken as of 03/17/2023
}; };
}; };