feat: Replacement of the autopairs plugin using snippets, extension of

snippets (mainly python) and cleanup of keymappings for snippets.
This commit is contained in:
2026-06-11 06:46:40 -05:00
parent c3fad7d51f
commit 4d291369e3
6 changed files with 74 additions and 46 deletions

View File

@@ -3,9 +3,9 @@ return {
pylsp = {
plugins = {
pycodestyle = {
enabled = false,
enabled = true,
ignore = {
'E501'
'E501' -- line-too-long
},
maxLineLength = 120,
},
@@ -13,7 +13,6 @@ return {
enabled = true,
args = {
'--disable=line-too-long',
'--disable=missing-function-docstring'
},
}
}