Skip to content

Commit c0cfd1b

Browse files
committed
feat: add pylsp config
1 parent d882972 commit c0cfd1b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

init.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,18 @@ require('lazy').setup({
706706
},
707707
},
708708
},
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+
},
709721
}
710722

711723
-- Ensure the servers and tools above are installed

0 commit comments

Comments
 (0)