summaryrefslogtreecommitdiff
path: root/lua/plugins/lsp.lua
blob: bb431b2c81b4eb18e5d364ff055bde9c12755e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
return {

  -- uncomment and add lsp servers with their config to servers below
  {
    "neovim/nvim-lspconfig",
    ---@type lspconfig.options
    -- servers = {
    --   jsonls = {},
    --   sumneko_lua = {
    --     settings = {
    --       Lua = {
    --         workspace = {
    --           checkThirdParty = false,
    --         },
    --         completion = {
    --           callSnippet = "Replace",
    --         },
    --       },
    --     },
    --   },
    -- },
  },

  -- uncomment and add tools to ensure_installed below
  {
    "williamboman/mason.nvim",
    -- ensure_installed = {
    --   "stylua",
    --   "shellcheck",
    --   "shfmt",
    --   "flake8",
    -- },
  },
}