Files
dotfiles/.config/nvim/lsp/pyright.lua
Belal Elsabbagh 01ac9df6e4 new lsp thing
2025-05-13 10:03:09 +03:00

21 lines
347 B
Lua

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,
},
},
},
}