plugins/nvim-lsp: add ltex language server + test

This commit is contained in:
Gaetan Lepage 2023-05-30 10:52:03 +02:00 committed by Gaétan Lepage
parent c1655427d6
commit eb6b49b396
4 changed files with 762 additions and 0 deletions

View file

@ -184,6 +184,13 @@ with lib; let
# nixpkgs.
package = null;
}
{
name = "ltex";
description = "Enable ltex-ls, for LanguageTool";
package = pkgs.ltex-ls;
settingsOptions = import ./ltex-settings.nix {inherit lib;};
settings = cfg: {ltex = cfg;};
}
{
name = "lua-ls";
description = "Enable lua LS, for lua";