125 lines
3.1 KiB
Lua
125 lines
3.1 KiB
Lua
dofile(vim.g.base46_cache .. "lsp")
|
|
require "nvchad.lsp"
|
|
|
|
local M = {}
|
|
local utils = require "core.utils"
|
|
local merge_tb = vim.tbl_deep_extend
|
|
local lspconfig = require("lspconfig")
|
|
|
|
-- export on_attach & capabilities for custom lspconfigs
|
|
|
|
M.on_attach = function(client, bufnr)
|
|
client.server_capabilities.documentFormattingProvider = false
|
|
client.server_capabilities.documentRangeFormattingProvider = false
|
|
|
|
utils.load_mappings("lspconfig", { buffer = bufnr })
|
|
|
|
if client.server_capabilities.signatureHelpProvider then
|
|
require("nvchad.signature").setup(client)
|
|
end
|
|
|
|
if not utils.load_config().ui.lsp_semantic_tokens and client.supports_method "textDocument/semanticTokens" then
|
|
client.server_capabilities.semanticTokensProvider = nil
|
|
end
|
|
end
|
|
|
|
M.capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
|
|
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",
|
|
},
|
|
},
|
|
}
|
|
|
|
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,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
-- Python
|
|
lspconfig.pyright.setup {}
|
|
-- C / C++
|
|
lspconfig.clangd.setup {}
|
|
-- Java
|
|
lspconfig.jdtls.setup {}
|
|
-- Godot GDScript
|
|
lspconfig.gdscript.setup {}
|
|
-- LaTeX
|
|
lspconfig.texlab.setup {}
|
|
-- Arduino
|
|
lspconfig.arduino_language_server.setup {}
|
|
-- Markdown
|
|
lspconfig.marksman.setup {}
|
|
-- HTML
|
|
lspconfig.html.setup {}
|
|
|
|
local load_mappings = function(section)
|
|
vim.schedule(function()
|
|
local function set_section_map(section_values)
|
|
if section_values.plugin then
|
|
return
|
|
end
|
|
|
|
section_values.plugin = nil
|
|
|
|
for mode, mode_values in pairs(section_values) do
|
|
local default_opts = merge_tb("force", { mode = mode }, {})
|
|
for keybind, mapping_info in pairs(mode_values) do
|
|
-- merge default + user opts
|
|
local opts = merge_tb("force", default_opts, mapping_info.opts or {})
|
|
|
|
mapping_info.opts, opts.mode = nil, nil
|
|
opts.desc = mapping_info[2]
|
|
|
|
vim.keymap.set(mode, keybind, mapping_info[1], opts)
|
|
end
|
|
end
|
|
end
|
|
|
|
local mappings = require("core.utils").load_config().mappings
|
|
|
|
if type(section) == "string" then
|
|
mappings[section]["plugin"] = nil
|
|
mappings = { mappings[section] }
|
|
end
|
|
|
|
for _, sect in pairs(mappings) do
|
|
set_section_map(sect)
|
|
end
|
|
end)
|
|
end
|
|
|
|
load_mappings("lspconfig")
|
|
|
|
return M
|