2022-05-04 06:55:36 +05:30
|
|
|
local present, lspconfig = pcall(require, "lspconfig")
|
|
|
|
|
|
|
|
if not present then
|
2022-07-22 16:00:00 +00:00
|
|
|
return
|
2022-05-04 06:55:36 +05:30
|
|
|
end
|
|
|
|
|
2022-06-14 17:36:27 +05:30
|
|
|
require("base46").load_highlight "lsp"
|
2022-07-15 09:37:12 +05:30
|
|
|
require "nvchad_ui.lsp"
|
2022-06-14 17:36:27 +05:30
|
|
|
|
2022-03-13 11:38:57 +01:00
|
|
|
local M = {}
|
2022-05-29 16:21:17 +05:30
|
|
|
local utils = require "core.utils"
|
2022-04-27 21:12:28 +05:30
|
|
|
|
2022-07-24 10:45:14 +00:00
|
|
|
-- export on_attach & capabilities for custom lspconfigs
|
|
|
|
|
2022-05-24 23:01:35 +05:30
|
|
|
M.on_attach = function(client, bufnr)
|
2022-10-04 06:37:48 +05:30
|
|
|
client.server_capabilities.documentFormattingProvider = false
|
|
|
|
client.server_capabilities.documentRangeFormattingProvider = false
|
2022-05-24 23:01:35 +05:30
|
|
|
|
2022-08-04 20:02:16 +05:30
|
|
|
utils.load_mappings("lspconfig", { buffer = bufnr })
|
2022-06-14 17:36:27 +05:30
|
|
|
|
2022-07-22 16:00:00 +00:00
|
|
|
if client.server_capabilities.signatureHelpProvider then
|
|
|
|
require("nvchad_ui.signature").setup(client)
|
|
|
|
end
|
2021-07-15 21:13:17 +05:30
|
|
|
end
|
2021-03-31 15:08:29 +05:30
|
|
|
|
2022-07-24 10:45:14 +00:00
|
|
|
M.capabilities = vim.lsp.protocol.make_client_capabilities()
|
2022-05-10 20:41:37 +05:30
|
|
|
|
2022-07-24 10:45:14 +00:00
|
|
|
M.capabilities.textDocument.completion.completionItem = {
|
2022-07-22 16:00:00 +00: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 22:26:04 +05:30
|
|
|
}
|
2021-07-10 09:41:10 +05:30
|
|
|
|
2022-05-04 06:55:36 +05:30
|
|
|
lspconfig.sumneko_lua.setup {
|
2022-07-22 16:00:00 +00:00
|
|
|
on_attach = M.on_attach,
|
2022-07-24 10:45:14 +00:00
|
|
|
capabilities = M.capabilities,
|
2022-05-04 06:55:36 +05:30
|
|
|
|
2022-07-22 16:00:00 +00: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 06:55:36 +05:30
|
|
|
},
|
2022-07-22 16:00:00 +00:00
|
|
|
},
|
|
|
|
},
|
2022-05-04 06:55:36 +05:30
|
|
|
}
|
|
|
|
|
2022-03-13 11:38:57 +01:00
|
|
|
return M
|