nvim/lua/user/lsp_servers/pyright.lua
Prabhat Maurya 203159cee6 update
2026-01-29 07:43:21 +05:30

14 lines
265 B
Lua

vim.lsp.config("pyright", {
on_attach = function(client, bufnr)
-- Custom keymaps and commands for pyright
end,
settings = {
python = {
analysis = {
autoSearchPaths = true,
useLibraryCodeForTypes = true,
},
},
},
})