2023-01-29 17:06:54 +01:00
|
|
|
dofile(vim.g.base46_cache .. "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)
|
2023-05-12 17:03:16 +02:00
|
|
|
client.server_capabilities.documentFormattingProvider = false
|
|
|
|
client.server_capabilities.documentRangeFormattingProvider = false
|
|
|
|
|
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
|
2023-04-10 03:51:07 +02:00
|
|
|
|
|
|
|
if not utils.load_config().ui.lsp_semantic_tokens then
|
|
|
|
client.server_capabilities.semanticTokensProvider = nil
|
|
|
|
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
|
|
|
|
2023-02-12 11:46:20 +01:00
|
|
|
require("lspconfig").lua_ls.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,
|
2023-02-26 05:47:45 +01:00
|
|
|
[vim.fn.stdpath "data" .. "/lazy/extensions/nvchad_types"] = true,
|
|
|
|
[vim.fn.stdpath "data" .. "/lazy/lazy.nvim/lua/lazy"] = true,
|
2022-07-22 18:00:00 +02:00
|
|
|
},
|
|
|
|
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
|