2022-05-04 03:25:36 +02:00
|
|
|
local present, lspconfig = pcall(require, "lspconfig")
|
|
|
|
|
|
|
|
if not present then
|
2022-07-22 18:00:00 +02:00
|
|
|
return
|
2022-05-04 03:25:36 +02:00
|
|
|
end
|
|
|
|
|
2022-06-14 14:06:27 +02:00
|
|
|
require("base46").load_highlight "lsp"
|
2022-07-15 06:07:12 +02:00
|
|
|
require "nvchad_ui.lsp"
|
2022-06-14 14:06:27 +02:00
|
|
|
|
2022-03-13 11:38:57 +01:00
|
|
|
local M = {}
|
2022-05-29 12:51:17 +02:00
|
|
|
local utils = require "core.utils"
|
2022-04-27 17:42:28 +02:00
|
|
|
|
2022-07-24 12:45:14 +02:00
|
|
|
-- export on_attach & capabilities for custom lspconfigs
|
|
|
|
|
2022-05-24 19:31:35 +02:00
|
|
|
M.on_attach = function(client, bufnr)
|
2022-07-26 15:05:58 +02:00
|
|
|
if vim.g.vim_version > 7 then
|
2022-07-22 18:00:00 +02:00
|
|
|
-- nightly
|
|
|
|
client.server_capabilities.documentFormattingProvider = false
|
|
|
|
client.server_capabilities.documentRangeFormattingProvider = false
|
|
|
|
else
|
|
|
|
-- stable
|
|
|
|
client.resolved_capabilities.document_formatting = false
|
|
|
|
client.resolved_capabilities.document_range_formatting = false
|
|
|
|
end
|
2022-05-24 19:31:35 +02:00
|
|
|
|
2022-08-04 16:32:16 +02:00
|
|
|
utils.load_mappings("lspconfig", { buffer = bufnr })
|
2022-06-14 14:06:27 +02:00
|
|
|
|
2022-07-22 18:00:00 +02:00
|
|
|
if client.server_capabilities.signatureHelpProvider then
|
|
|
|
require("nvchad_ui.signature").setup(client)
|
|
|
|
end
|
2021-07-15 17:43:17 +02:00
|
|
|
end
|
2021-03-31 11:38:29 +02:00
|
|
|
|
2022-07-24 12:45:14 +02:00
|
|
|
M.capabilities = vim.lsp.protocol.make_client_capabilities()
|
2022-05-10 17:11:37 +02:00
|
|
|
|
2022-07-24 12:45:14 +02:00
|
|
|
M.capabilities.textDocument.completion.completionItem = {
|
2022-07-22 18:00:00 +02:00
|
|
|
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 17:56:04 +01:00
|
|
|
}
|
2021-07-10 06:11:10 +02:00
|
|
|
|
2022-05-04 03:25:36 +02:00
|
|
|
lspconfig.sumneko_lua.setup {
|
2022-07-22 18:00:00 +02:00
|
|
|
on_attach = M.on_attach,
|
2022-07-24 12:45:14 +02:00
|
|
|
capabilities = M.capabilities,
|
2022-05-04 03:25:36 +02:00
|
|
|
|
2022-07-22 18:00:00 +02:00
|
|
|
settings = {
|
|
|
|
Lua = {
|
|
|
|
diagnostics = {
|
|
|
|
globals = { "vim" },
|
|
|
|
},
|
|
|
|
workspace = {
|
|
|
|
library = {
|
|
|
|
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
|
|
|
|
[vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true,
|
|
|
|
},
|
|
|
|
maxPreload = 100000,
|
|
|
|
preloadFileSize = 10000,
|
2022-05-04 03:25:36 +02:00
|
|
|
},
|
2022-07-22 18:00:00 +02:00
|
|
|
},
|
|
|
|
},
|
2022-05-04 03:25:36 +02:00
|
|
|
}
|
|
|
|
|
2022-03-13 11:38:57 +01:00
|
|
|
return M
|