10 lines
167 B
Lua
10 lines
167 B
Lua
return function()
|
|
require"lspconfig".basedpyright.setup {
|
|
settings = {
|
|
python = {
|
|
pythonPath = vim.fn.exepath("python3"),
|
|
},
|
|
},
|
|
}
|
|
end
|
|
|