2021-07-28 17:24:05 -04:00
|
|
|
local utils = require "utils"
|
2021-07-24 21:17:11 -04:00
|
|
|
local lsp_config = {}
|
|
|
|
|
2021-07-28 17:13:50 -04:00
|
|
|
function lsp_config.config()
|
|
|
|
require("lsp.kind").setup()
|
|
|
|
require("lsp.handlers").setup()
|
|
|
|
require("lsp.signs").setup()
|
2021-07-28 17:20:25 -04:00
|
|
|
require("lsp.keybinds").setup()
|
2021-07-28 17:13:50 -04:00
|
|
|
end
|
2021-07-15 20:49:33 -04:00
|
|
|
|
2021-07-25 14:45:40 -04:00
|
|
|
local function no_formatter_on_attach(client, bufnr)
|
|
|
|
if lvim.lsp.on_attach_callback then
|
|
|
|
lvim.lsp.on_attach_callback(client, bufnr)
|
|
|
|
end
|
2021-07-28 17:13:50 -04:00
|
|
|
require("lsp.utils").lsp_highlight_document(client)
|
2021-07-25 14:45:40 -04:00
|
|
|
client.resolved_capabilities.document_formatting = false
|
|
|
|
end
|
|
|
|
|
2021-07-24 21:17:11 -04:00
|
|
|
function lsp_config.common_capabilities()
|
|
|
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
|
|
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
|
|
|
capabilities.textDocument.completion.completionItem.resolveSupport = {
|
|
|
|
properties = {
|
|
|
|
"documentation",
|
|
|
|
"detail",
|
|
|
|
"additionalTextEdits",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return capabilities
|
|
|
|
end
|
|
|
|
|
2021-07-25 13:55:19 +02:00
|
|
|
require("core.autocmds").define_augroups {
|
2021-07-09 16:37:25 +04:30
|
|
|
_general_lsp = {
|
|
|
|
{ "FileType", "lspinfo", "nnoremap <silent> <buffer> q :q<CR>" },
|
|
|
|
},
|
|
|
|
}
|
2021-06-30 18:45:40 -04:00
|
|
|
|
2021-07-24 21:17:11 -04:00
|
|
|
function lsp_config.setup(lang)
|
2021-07-25 00:13:35 -04:00
|
|
|
local lang_server = lvim.lang[lang].lsp
|
2021-07-24 21:17:11 -04:00
|
|
|
local provider = lang_server.provider
|
2021-07-26 19:14:23 +02:00
|
|
|
if require("utils").check_lsp_client_active(provider) then
|
2021-07-24 21:17:11 -04:00
|
|
|
return
|
|
|
|
end
|
2021-07-25 00:13:35 -04:00
|
|
|
|
|
|
|
local overrides = lvim.lsp.override
|
|
|
|
|
2021-07-28 17:24:05 -04:00
|
|
|
if utils.is_table(overrides) then
|
|
|
|
if utils.has_value(overrides, lang) then
|
2021-07-25 00:13:35 -04:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-07-28 17:24:05 -04:00
|
|
|
if utils.is_string(overrides) then
|
2021-07-25 00:13:35 -04:00
|
|
|
if overrides == lang then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2021-07-25 14:45:40 -04:00
|
|
|
local sources = require("lsp.null-ls").setup(lang)
|
|
|
|
|
|
|
|
for _, source in pairs(sources) do
|
|
|
|
local method = source.method
|
|
|
|
local format_method = "NULL_LS_FORMATTING"
|
|
|
|
|
2021-07-28 17:24:05 -04:00
|
|
|
if utils.is_table(method) then
|
|
|
|
if utils.has_value(method, format_method) then
|
2021-07-25 14:45:40 -04:00
|
|
|
lang_server.setup.on_attach = no_formatter_on_attach
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-07-28 17:24:05 -04:00
|
|
|
if utils.is_string(method) then
|
2021-07-25 14:45:40 -04:00
|
|
|
if method == format_method then
|
|
|
|
lang_server.setup.on_attach = no_formatter_on_attach
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-07-25 00:13:35 -04:00
|
|
|
|
2021-07-26 14:32:29 -04:00
|
|
|
if provider == "" or provider == nil then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-07-24 21:17:11 -04:00
|
|
|
require("lspconfig")[provider].setup(lang_server.setup)
|
|
|
|
end
|
|
|
|
|
2021-03-17 20:32:52 -04:00
|
|
|
return lsp_config
|