2021-08-24 05:31:01 +00:00
|
|
|
local function on_attach(_, bufnr)
|
|
|
|
local function buf_set_keymap(...)
|
|
|
|
vim.api.nvim_buf_set_keymap(bufnr, ...)
|
|
|
|
end
|
|
|
|
local function buf_set_option(...)
|
|
|
|
vim.api.nvim_buf_set_option(bufnr, ...)
|
|
|
|
end
|
2021-08-16 07:49:09 +00:00
|
|
|
|
2021-08-24 05:31:01 +00:00
|
|
|
-- Enable completion triggered by <c-x><c-o>
|
|
|
|
buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
|
2021-08-16 07:49:09 +00:00
|
|
|
|
2021-08-24 05:31:01 +00:00
|
|
|
-- Mappings.
|
|
|
|
local opts = { noremap = true, silent = true }
|
2021-08-16 07:49:09 +00:00
|
|
|
|
2021-08-24 05:31:01 +00:00
|
|
|
-- See `:help vim.lsp.*` for documentation on any of the below functions
|
|
|
|
buf_set_keymap("n", "gD", "<cmd>lua vim.lsp.buf.declaration()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "gd", "<cmd>lua vim.lsp.buf.definition()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "K", "<cmd>lua vim.lsp.buf.hover()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts)
|
2021-08-29 04:34:50 +00:00
|
|
|
buf_set_keymap("n", "gk", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts)
|
2021-08-24 05:31:01 +00:00
|
|
|
buf_set_keymap("n", "<space>wa", "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "<space>wr", "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "<space>wl", "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>", opts)
|
|
|
|
buf_set_keymap("n", "<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "<space>ca", "<cmd>lua vim.lsp.buf.code_action()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts)
|
2021-09-30 16:52:52 +00:00
|
|
|
buf_set_keymap("n", "ge", "<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>", opts)
|
2021-08-24 05:31:01 +00:00
|
|
|
buf_set_keymap("n", "[d", "<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "]d", "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", opts)
|
|
|
|
buf_set_keymap("n", "<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>", opts)
|
2021-09-29 17:04:22 +00:00
|
|
|
buf_set_keymap("n", "<space>fm", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts)
|
2021-08-24 05:31:01 +00:00
|
|
|
buf_set_keymap("v", "<space>ca", "<cmd>lua vim.lsp.buf.range_code_action()<CR>", opts)
|
2021-07-15 15:43:17 +00:00
|
|
|
end
|
2021-03-31 09:38:29 +00:00
|
|
|
|
2021-07-15 15:43:17 +00:00
|
|
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
2021-10-09 05:47:21 +00:00
|
|
|
capabilities.textDocument.completion.completionItem.documentationFormat = { "markdown", "plaintext" }
|
|
|
|
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
|
|
|
capabilities.textDocument.completion.completionItem.preselectSupport = true
|
|
|
|
capabilities.textDocument.completion.completionItem.insertReplaceSupport = true
|
|
|
|
capabilities.textDocument.completion.completionItem.labelDetailsSupport = true
|
|
|
|
capabilities.textDocument.completion.completionItem.deprecatedSupport = true
|
|
|
|
capabilities.textDocument.completion.completionItem.commitCharactersSupport = true
|
|
|
|
capabilities.textDocument.completion.completionItem.tagSupport = { valueSet = { 1 } }
|
|
|
|
capabilities.textDocument.completion.completionItem.resolveSupport = {
|
|
|
|
properties = {
|
|
|
|
"documentation",
|
|
|
|
"detail",
|
|
|
|
"additionalTextEdits",
|
|
|
|
},
|
|
|
|
}
|
2021-07-10 04:11:10 +00:00
|
|
|
|
2021-09-30 04:21:00 +00:00
|
|
|
-- requires a file containing user's lspconfigs
|
|
|
|
local addlsp_confs = require("core.utils").load_config().plugins.options.lspconfig.setup_lspconf
|
|
|
|
|
2021-11-09 00:51:27 +00:00
|
|
|
if #addlsp_confs ~= 0 then
|
2021-09-30 04:23:09 +00:00
|
|
|
require(addlsp_confs).setup_lsp(on_attach, capabilities)
|
2021-09-30 04:21:00 +00:00
|
|
|
end
|
2021-11-14 01:19:33 +00:00
|
|
|
|
|
|
|
require("plugins.configs.others").lsp_handlers()
|