mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
27 lines
503 B
Lua
27 lines
503 B
Lua
-- Python
|
|
--[[ Installation
|
|
uv tool install pyright
|
|
--]]
|
|
return {
|
|
cmd = { "pyright-langserver", "--stdio" },
|
|
filetypes = { "python" },
|
|
root_markers = {
|
|
".python_version",
|
|
"pyproject.toml",
|
|
"setup.py",
|
|
"setup.cfg",
|
|
"requirements.txt",
|
|
"Pipfile",
|
|
"pyrightconfig.json",
|
|
".git",
|
|
},
|
|
settings = {
|
|
python = {
|
|
analysis = {
|
|
autoSearchPaths = true,
|
|
useLibraryCodeForTypes = true,
|
|
diagnosticMode = "openFilesOnly",
|
|
},
|
|
},
|
|
},
|
|
}
|