12 lines
172 B
Lua
12 lines
172 B
Lua
vim.lsp.config("pylsp", {
|
|
settings = {
|
|
pylsp = {
|
|
plugins = {
|
|
pycodestyle = {
|
|
ignore = { "W391", "E501" },
|
|
maxLineLength = 100,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|