mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-29 20:04:28 +02:00
plugins/nvim-lsp: add yamlls language server (#326)
Co-authored-by: Ninja3047 <1284324+Ninja3047@user.noreply.github.com>
This commit is contained in:
parent
b6706fa0ec
commit
9fcc9ed65d
2 changed files with 6 additions and 0 deletions
|
@ -321,6 +321,11 @@ with lib; let
|
|||
description = "Enable vuels, for Vue";
|
||||
package = pkgs.nodePackages.vls;
|
||||
}
|
||||
{
|
||||
name = "yamlls";
|
||||
description = "Enable yamlls, for yaml";
|
||||
package = pkgs.yaml-language-server;
|
||||
}
|
||||
{
|
||||
name = "zls";
|
||||
description = "Enable zls, for Zig.";
|
||||
|
|
|
@ -66,6 +66,7 @@
|
|||
tsserver.enable = true;
|
||||
typst-lsp.enable = true;
|
||||
vuels.enable = true;
|
||||
yamlls.enable = true;
|
||||
# zls.enable = true; Broken as of 03/17/2023
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue