Merge pull request #64 from horriblename/fix-py-lsp

fix: broken python lsp option
This commit is contained in:
NotAShelf 2023-04-29 21:31:50 +03:00 committed by GitHub
commit f9b15c97cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,11 @@ in {
type = with types; enum (attrNames servers); type = with types; enum (attrNames servers);
default = defaultServer; default = defaultServer;
}; };
package = nvim.types.mkGrammarOption pkgs "python"; package = mkOption {
description = "python LSP server package";
type = types.package;
default = servers.${cfg.lsp.server}.package;
};
}; };
format = { format = {