summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/lsp/manager.lua
blob: a7d68927ecd4dfda0bdbb8698a87a9c239215e74 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
local M = {}

local Log = require "core.log"
local lsp_utils = require "lsp.utils"

function M.init_defaults(languages)
  for _, entry in ipairs(languages) do
    if not options.lang[entry] then
      options.lang[entry] = {
        formatters = {},
        linters = {},
        lsp = {},
      }
    end
  end
end

local function is_overridden(server)
  local overrides = options.lsp.override
  if type(overrides) == "table" then
    if vim.tbl_contains(overrides, server) then
      return true
    end
  end
end

---Resolve the configuration for a server based on both common and user configuration
---@param name string
---@param user_config table [optional]
---@return table
local function resolve_config(name, user_config)
  local config = {
    on_attach = require("lsp").common_on_attach,
    on_init = require("lsp").common_on_init,
    capabilities = require("lsp").common_capabilities(),
  }

  local status_ok, custom_config = pcall(
    require,
    "lsp/providers/" .. name
  )
  if status_ok then
    Log:debug("Using custom configuration for requested server: " .. name)
    config = vim.tbl_deep_extend("force", config, custom_config)
  end

  if user_config then
    config = vim.tbl_deep_extend("force", config, user_config)
  end

  return config
end

---Setup a language server by providing a name
---@param server_name string name of the language server
---@param user_config table [optional] when available it will take predence over any default configurations
function M.setup(server_name, user_config)
  vim.validate { name = { server_name, "string" } }

  if lsp_utils.is_client_active(server_name) or is_overridden(server_name) then
    return
  end

  local config = resolve_config(server_name, user_config)
  local server_available, requested_server = require("nvim-lsp-installer.servers").get_server(server_name)

  local function ensure_installed(server)
    if server:is_installed() then
      return true
    end
    if not lvim.lsp.automatic_servers_installation then
      Log:debug(server.name .. " is not managed by the automatic installer")
      return false
    end
    Log:debug(string.format("Installing [%s]", server.name))
    server:install()
    vim.schedule(function()
      vim.cmd [[LspStart]]
    end)
  end

  if server_available and ensure_installed(requested_server) then
    requested_server:setup(config)
  else
    require("lspconfig")[server_name].setup(config)
  end
end

return M