nvim-dap-profiles :( Apparently there is a way to do the same thing using launch.json built into dap, much better than my solution.
21 lines
497 B
Lua
21 lines
497 B
Lua
return {
|
|
cmd = { "pyright-langserver", "--stdio" },
|
|
filetypes = { "python", "py" },
|
|
root_markers = {
|
|
"pyproject.toml",
|
|
"setup.py",
|
|
"setup.cfg",
|
|
"requirements.txt",
|
|
"Pipfile",
|
|
"pyrightconfig.json",
|
|
},
|
|
settings = {
|
|
python = {
|
|
analysis = {
|
|
autoSearchPaths = true,
|
|
useLibraryCodeForTypes = true,
|
|
diagnosticMode = "openFilesOnly",
|
|
},
|
|
},
|
|
},
|
|
}
|