neovim-confs/lua/nvchad/configs/lspconfig.lua

95 lines
2.9 KiB
Lua
Raw Normal View History

local M = {}
2024-02-25 04:13:48 +01:00
local map = vim.keymap.set
local conf = require("nvconfig").ui.lsp
-- export on_attach & capabilities for custom lspconfigs
2022-05-24 19:31:35 +02:00
M.on_attach = function(client, bufnr)
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")
2024-03-04 03:48:44 +01:00
map("n", "<leader>sh", vim.lsp.buf.signature_help, opts "Lsp Show signature help")
2024-02-27 15:07:57 +01:00
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()
2024-03-07 02:20:13 +01:00
require "nvchad.lsp.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")
-- setup signature popup
if conf.signature and client.server_capabilities.signatureHelpProvider then
2024-03-07 02:20:13 +01:00
require("nvchad.lsp.signature").setup(client, bufnr)
end
end
-- disable semanticTokens
M.on_init = function(client, _)
if not conf.semantic_tokens and client.supports_method "textDocument/semanticTokens" then
client.server_capabilities.semanticTokensProvider = nil
end
end
2021-03-31 11:38:29 +02:00
M.capabilities = vim.lsp.protocol.make_client_capabilities()
2022-05-10 17:11:37 +02:00
M.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 17:56:04 +01:00
}
2021-07-10 06:11:10 +02:00
M.defaults = function()
dofile(vim.g.base46_cache .. "lsp")
require "nvchad.lsp"
require("lspconfig").lua_ls.setup {
on_attach = M.on_attach,
capabilities = M.capabilities,
on_init = M.on_init,
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,
},
},
},
}
end
return M