Skip to content

Instantly share code, notes, and snippets.

View smjonas's full-sized avatar

Jonas Strittmatter smjonas

  • Karlsruhe Institute of Technology
  • Karlsruhe, Germany
View GitHub Profile
@b3z
b3z / pylsp.lua
Created June 14, 2023 13:14
Disable line to long warning in pylsp lua neovim and disable linebreaks when formatting
return {
settings = {
pylsp = {
plugins = {
pycodestyle = {
ignore = {'E501'}, -- This is the Error code for line too long.
maxLineLength = 200 -- This sets how long the line is allowed to be. Also has effect on formatter.
},
},
},