starter/lua/plugins/pyright.lua

15 lines
297 B
Lua
Raw Normal View History

2024-02-18 11:32:10 +08:00
return {
-- add pyright to lspconfig
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
-- pyright will be automatically installed with mason and loaded with lspconfig
pyright = {},
},
},
},
}