plugins/nvim-lsp: add the pylsp server (#177)

This commit is contained in:
Gaétan Lepage 2023-02-21 10:01:34 +01:00 committed by GitHub
parent 7ee4ec70a4
commit b1bd19b1b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -198,6 +198,11 @@ with lib; let
}; };
settings = cfg: {nil = {inherit (cfg) formatting diagnostics;};}; settings = cfg: {nil = {inherit (cfg) formatting diagnostics;};};
} }
{
name = "pylsp";
description = "Enable pylsp, for Python.";
package = pkgs.python3Packages.python-lsp-server;
}
{ {
name = "pyright"; name = "pyright";
description = "Enable pyright, for Python."; description = "Enable pyright, for Python.";