summaryrefslogtreecommitdiff
path: root/lua/plugins/lspconfig.lua
blob: ca3a791bfab13d6cce3f777b91c2b96899ddd3f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return {
  'neovim/nvim-lspconfig',
  dependencies = {
    {
      'williamboman/mason.nvim',
      opts = {
        ensure_installed = {
          "gopls",
        },
      },
    },
    'williamboman/mason-lspconfig.nvim',
    { 'j-hui/fidget.nvim', opts = {} },
    'folke/neodev.nvim',
  },
}