nix/modules/home-manager/cli/neovim/files/lsp/pylsp.lua
2025-04-18 08:54:33 +02:00

21 lines
341 B
Lua

return {
cmd = { 'pylsp' },
filetypes = { 'python' },
root_markers = {
'pyproject.toml',
'setup.py',
'setup.cfg',
'requirements.txt',
'Pipfile',
'.git',
},
settings = {
pylsp = {
plugins = {
pylint = {
enabled = true
}
}
}
}
}