We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d882972 commit c0cfd1bCopy full SHA for c0cfd1b
init.lua
@@ -706,6 +706,18 @@ require('lazy').setup({
706
},
707
708
709
+ pylsp = { -- Add pylsp configuration here
710
+ settings = {
711
+ pylsp = {
712
+ plugins = {
713
+ pycodestyle = {
714
+ ignore = { "E302", "E225" }, -- Ignore "expected 2 blank lines"
715
+ maxLineLength = 100, -- Example: Adjust max line length
716
+ },
717
718
719
720
721
}
722
723
-- Ensure the servers and tools above are installed
0 commit comments