nixos-configs/homeManagerModules/neovim/langs/python.nix
matt1432 a7a20653a0
All checks were successful
Discord / discord commits (push) Has been skipped
feat(nvim): switch to pylsp
2024-11-26 23:36:33 -05:00

45 lines
1 KiB
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf;
cfg = config.programs.neovim;
in
mkIf cfg.enableIde {
programs = {
neovim = {
withPython3 = true;
extraPython3Packages = py:
with py; ([
python-lsp-server
]
++ python-lsp-server.optional-dependencies.all);
extraPackages = with pkgs.python3Packages; ([
python-lsp-server
]
++ python-lsp-server.optional-dependencies.all);
extraLuaConfig =
# lua
''
require('lspconfig').pylsp.setup({
capabilities = require('cmp_nvim_lsp').default_capabilities(),
settings = {
pylsp = {
plugins = {
pycodestyle = {
maxLineLength = 100,
},
},
},
},
});
'';
};
};
}