Python debugging

This commit is contained in:
Zackarias Montell
2025-05-22 07:59:56 +02:00
parent 3a964ff800
commit d4af3a551d
3 changed files with 38 additions and 2 deletions

View File

@@ -576,7 +576,17 @@ require('lazy').setup({
},
-- C# Csharp
roslyn = {},
pylsp = {},
pylsp = {
settings = {
pylsp = {
plugins = {
pycodestyle = {
ignore = { 'E501' }, -- ignore line length, let black formatter manage this, sometimes lines must be long.
},
},
},
},
},
}
-- Ensure the servers and tools above are installed