new lsp thing

This commit is contained in:
Belal Elsabbagh
2025-05-13 10:03:09 +03:00
parent fce940df13
commit 01ac9df6e4
9 changed files with 76 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
return {
cmd = { 'pyright' },
filetypes = { 'python' },
root_markers = {
'pyproject.toml',
'setup.py',
'setup.cfg',
'requirements.txt',
'Pipfile',
'pyrightconfig.json',
},
settings = {
python = {
analysis = {
autoSearchPaths = true,
useLibraryCodeForTypes = true,
},
},
},
}