2022-03-13 11:38:57 +01:00
|
|
|
local M = {}
|
2024-02-25 04:13:48 +01:00
|
|
|
local map = vim.keymap.set
|
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-10-24 03:15:17 +02:00
|
|
|
local conf = require("nvconfig").ui.lsp
|
2024-01-28 17:03:38 +01:00
|
|
|
|
2023-09-26 15:21:34 +02:00
|
|
|
-- semanticTokens
|
|
|
|
if not conf.semantic_tokens and client.supports_method "textDocument/semanticTokens" then
|
2023-04-10 03:51:07 +02:00
|
|
|
client.server_capabilities.semanticTokensProvider = nil
|
|
|
|
end
|
2023-09-26 17:11:19 +02:00
|
|
|
|
|
|
|
if conf.signature and client.server_capabilities.signatureHelpProvider then
|
|
|
|
require("nvchad.signature").setup(client, bufnr)
|
|
|
|
end
|
|
|
|
|
2024-02-25 04:13:48 +01:00
|
|
|
local function opts(desc)
|
|
|
|
return { buffer = bufnr, desc = desc }
|
|
|
|
end
|
|
|
|
|
2024-02-27 15:07:57 +01:00
|
|
|
map("n", "gD", vim.lsp.buf.declaration, opts "Lsp Go to declaration")
|
|
|
|
map("n", "gd", vim.lsp.buf.definition, opts "Lsp Go to definition")
|
|
|
|
map("n", "K", vim.lsp.buf.hover, opts "Lsp hover information")
|
|
|
|
map("n", "gi", vim.lsp.buf.implementation, opts "Lsp Go to implementation")
|
|
|
|
map("n", "<C-k>", vim.lsp.buf.signature_help, opts "Lsp Show signature help")
|
|
|
|
map("n", "<leader>wa", vim.lsp.buf.add_workspace_folder, opts "Lsp Add workspace folder")
|
|
|
|
map("n", "<leader>wr", vim.lsp.buf.remove_workspace_folder, opts "Lsp Remove workspace folder")
|
2024-02-25 04:13:48 +01:00
|
|
|
|
|
|
|
map("n", "<leader>wl", function()
|
|
|
|
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
|
2024-02-27 15:07:57 +01:00
|
|
|
end, opts "Lsp List workspace folders")
|
2024-02-25 04:13:48 +01:00
|
|
|
|
2024-02-27 15:07:57 +01:00
|
|
|
map("n", "<leader>D", vim.lsp.buf.type_definition, opts "Lsp Go to type definition")
|
2024-02-27 08:01:36 +01:00
|
|
|
|
|
|
|
map("n", "<leader>ra", function()
|
|
|
|
require "nvchad.renamer"()
|
2024-02-27 15:07:57 +01:00
|
|
|
end, opts "Lsp NvRenamer")
|
2024-02-27 08:01:36 +01:00
|
|
|
|
2024-02-27 15:07:57 +01:00
|
|
|
map({ "n", "v" }, "<leader>ca", vim.lsp.buf.code_action, opts "Lsp Code action")
|
|
|
|
map("n", "gr", vim.lsp.buf.references, opts "Lsp Show references")
|
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-09-28 03:52:02 +02:00
|
|
|
M.defaults = function()
|
|
|
|
dofile(vim.g.base46_cache .. "lsp")
|
|
|
|
require "nvchad.lsp"
|
2022-05-04 03:25:36 +02:00
|
|
|
|
2023-09-28 03:52:02 +02:00
|
|
|
require("lspconfig").lua_ls.setup {
|
|
|
|
on_attach = M.on_attach,
|
|
|
|
capabilities = M.capabilities,
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
Lua = {
|
|
|
|
diagnostics = {
|
|
|
|
globals = { "vim" },
|
|
|
|
},
|
|
|
|
workspace = {
|
|
|
|
library = {
|
|
|
|
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
|
|
|
|
[vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true,
|
|
|
|
[vim.fn.stdpath "data" .. "/lazy/ui/nvchad_types"] = true,
|
|
|
|
[vim.fn.stdpath "data" .. "/lazy/lazy.nvim/lua/lazy"] = true,
|
|
|
|
},
|
|
|
|
maxPreload = 100000,
|
|
|
|
preloadFileSize = 10000,
|
2022-07-22 18:00:00 +02:00
|
|
|
},
|
2022-05-04 03:25:36 +02:00
|
|
|
},
|
2022-07-22 18:00:00 +02:00
|
|
|
},
|
2023-09-28 03:52:02 +02:00
|
|
|
}
|
|
|
|
end
|
2022-05-04 03:25:36 +02:00
|
|
|
|
2022-03-13 11:38:57 +01:00
|
|
|
return M
|