Files
dotfiles/nvim/after/lsp/pylsp.lua
FaultyBranches 4d291369e3 feat: Replacement of the autopairs plugin using snippets, extension of
snippets (mainly python) and cleanup of keymappings for snippets.
2026-06-11 06:46:40 -05:00

22 lines
514 B
Lua

return {
settings = {
pylsp = {
plugins = {
pycodestyle = {
enabled = true,
ignore = {
'E501' -- line-too-long
},
maxLineLength = 120,
},
pylint = {
enabled = true,
args = {
'--disable=line-too-long',
},
}
}
}
}
}