summaryrefslogtreecommitdiff
path: root/lua/plugins/lang/python.lua
blob: 62470c621babb5d35b9ea6bf277ac75d0ebe4d3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
return {
   {
      "neovim/nvim-lspconfig",
      opts = function(_, opts)
         if type(opts) == "table" then
            opts.servers = opts.servers or {}
            opts.servers.pyright = {}
         end
      end,
   },
}