plugins/lsp: add pylyzer language server

This commit is contained in:
Gaetan Lepage 2023-12-10 13:58:09 +01:00 committed by Gaétan Lepage
parent 430c8f672b
commit a9e37f1f00
2 changed files with 5 additions and 0 deletions

View file

@ -464,6 +464,10 @@ with lib; let
package = pkgs.python3Packages.python-lsp-server;
settings = cfg: {pylsp = cfg;};
}
{
name = "pylyzer";
description = "Enable pylyzer, for Python.";
}
{
name = "pyright";
description = "Enable pyright, for Python.";

View file

@ -119,6 +119,7 @@
pest_ls.enable = true;
prismals.enable = true;
pylsp.enable = true;
pylyzer.enable = true;
pyright.enable = true;
rnix-lsp.enable = true;
ruff-lsp.enable = true;