2022-05-04 01:25:36 +00:00
|
|
|
local present, lspconfig = pcall(require, "lspconfig")
|
|
|
|
|
|
|
|
if not present then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-03-13 10:38:57 +00:00
|
|
|
local M = {}
|
2022-04-27 15:42:28 +00:00
|
|
|
|
2021-12-15 14:57:54 +00:00
|
|
|
require("plugins.configs.others").lsp_handlers()
|
|
|
|
|
2022-05-02 18:43:38 +00:00
|
|
|
function M.on_attach(client, _)
|
2022-03-07 13:12:32 +00:00
|
|
|
client.resolved_capabilities.document_formatting = false
|
|
|
|
client.resolved_capabilities.document_range_formatting = false
|
2021-07-15 15:43:17 +00:00
|
|
|
end
|
2021-03-31 09:38:29 +00:00
|
|
|
|
2021-07-15 15:43:17 +00:00
|
|
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
2022-05-10 15:11:37 +00:00
|
|
|
|
|
|
|
capabilities.textDocument.completion.completionItem = {
|
|
|
|
documentationFormat = { "markdown", "plaintext" },
|
|
|
|
snippetSupport = true,
|
|
|
|
preselectSupport = true,
|
|
|
|
insertReplaceSupport = true,
|
|
|
|
labelDetailsSupport = true,
|
|
|
|
deprecatedSupport = true,
|
|
|
|
commitCharactersSupport = true,
|
|
|
|
tagSupport = { valueSet = { 1 } },
|
|
|
|
resolveSupport = {
|
|
|
|
properties = {
|
|
|
|
"documentation",
|
|
|
|
"detail",
|
|
|
|
"additionalTextEdits",
|
|
|
|
},
|
2022-02-02 16:56:04 +00:00
|
|
|
},
|
|
|
|
}
|
2021-07-10 04:11:10 +00:00
|
|
|
|
2022-05-04 01:25:36 +00:00
|
|
|
lspconfig.sumneko_lua.setup {
|
|
|
|
on_attach = M.on_attach,
|
|
|
|
capabilities = capabilities,
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
Lua = {
|
|
|
|
diagnostics = {
|
2022-05-10 15:11:37 +00:00
|
|
|
globals = { "vim", "nvchad" },
|
2022-05-04 01:25:36 +00:00
|
|
|
},
|
|
|
|
workspace = {
|
|
|
|
library = {
|
|
|
|
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
|
|
|
|
[vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true,
|
|
|
|
},
|
|
|
|
maxPreload = 100000,
|
|
|
|
preloadFileSize = 10000,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-09-30 04:21:00 +00:00
|
|
|
-- requires a file containing user's lspconfigs
|
2022-05-10 13:43:48 +00:00
|
|
|
local addlsp_confs = nvchad.load_config().plugins.options.lspconfig.setup_lspconf
|
2021-09-30 04:21:00 +00:00
|
|
|
|
2021-11-09 00:51:27 +00:00
|
|
|
if #addlsp_confs ~= 0 then
|
2022-03-13 10:38:57 +00:00
|
|
|
require(addlsp_confs).setup_lsp(M.on_attach, capabilities)
|
2021-09-30 04:21:00 +00:00
|
|
|
end
|
2022-03-13 10:38:57 +00:00
|
|
|
|
|
|
|
return M
|