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

78 lines
1.9 KiB
Lua
Raw Normal View History

local present, lspconfig = pcall(require, "lspconfig")
if not present then
return
end
local M = {}
2021-12-15 15:57:54 +01:00
require("plugins.configs.others").lsp_handlers()
2022-05-14 07:48:29 +02:00
-- Borders for LspInfo winodw
local win = require "lspconfig.ui.windows"
local _default_opts = win.default_opts
win.default_opts = function(options)
local opts = _default_opts(options)
2022-05-21 09:03:19 +02:00
opts.border = "single"
2022-05-14 07:48:29 +02:00
return opts
end
2022-05-24 19:31:35 +02:00
M.on_attach = function(client, bufnr)
client.resolved_capabilities.document_formatting = false
client.resolved_capabilities.document_range_formatting = false
2022-05-24 19:31:35 +02:00
local lsp_mappings = require("core.utils").load_config().mappings.lspconfig
require("core.utils").load_mappings({ lsp_mappings }, { buffer = bufnr })
end
2021-03-31 11:38:29 +02:00
local capabilities = vim.lsp.protocol.make_client_capabilities()
2022-05-10 17:11:37 +02:00
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
lspconfig.sumneko_lua.setup {
on_attach = M.on_attach,
capabilities = capabilities,
settings = {
Lua = {
diagnostics = {
2022-05-10 17:11:37 +02:00
globals = { "vim", "nvchad" },
},
workspace = {
library = {
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
[vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true,
},
maxPreload = 100000,
preloadFileSize = 10000,
},
},
},
}
2021-09-30 06:21:00 +02:00
-- requires a file containing user's lspconfigs
local addlsp_confs = require("core.utils").load_config().plugins.options.lspconfig.setup_lspconf
2021-09-30 06:21:00 +02:00
if #addlsp_confs ~= 0 then
require(addlsp_confs).setup_lsp(M.on_attach, capabilities)
2021-09-30 06:21:00 +02:00
end
return M