nvim-config11/lsp/pyright.lua

17 lines
389 B
Lua
Raw Normal View History

2025-03-27 08:18:20 +00:00
return {
cmd = { "pyright-langserver", "--stdio" },
filetypes = { "python" },
root_markers = { "pyproject.toml" },
2025-03-27 08:18:20 +00:00
settings = {
python = {
analysis = {
autoSearchPaths = true,
diagnosticMode = "openFilesOnly",
useLibraryCodeForTypes = true
}
}
},
single_file_support = true
}