lspconfig.lua 357 B

1234567891011121314
  1. return {
  2. "neovim/nvim-lspconfig",
  3. ---@class PluginLspOpts
  4. opts = {
  5. ---@type lspconfig.options
  6. --autoformat = false,
  7. servers = {
  8. -- pyright will be automatically installed with mason and loaded with lspconfig
  9. pyright = {},
  10. intelephense = {},
  11. gopls = {},
  12. },
  13. },
  14. }