14 lines
193 B
Lua
14 lines
193 B
Lua
local lspconfig = require("lspconfig")
|
|
|
|
lspconfig.pylsp.setup{
|
|
settings = {
|
|
pylsp = {
|
|
plugins = {
|
|
pycodestyle = {
|
|
maxLineLength = 79
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|