LunarVim/lua/lsp/init.lua

155 lines
4.5 KiB
Lua
Raw Normal View History

2021-07-29 01:16:45 +02:00
local M = {}
local Log = require "core.log"
2021-07-29 01:16:45 +02:00
function M.config()
2021-07-31 16:12:29 +02:00
vim.lsp.protocol.CompletionItemKind = lvim.lsp.completion.item_kind
for _, sign in ipairs(lvim.lsp.diagnostics.signs.values) do
vim.fn.sign_define(sign.name, { texthl = sign.name, text = sign.text, numhl = sign.name })
end
2021-07-28 23:13:50 +02:00
require("lsp.handlers").setup()
end
2021-07-16 02:49:33 +02:00
local function lsp_highlight_document(client)
if lvim.lsp.document_highlight == false then
return -- we don't need further
end
-- Set autocommands conditional on server_capabilities
if client.resolved_capabilities.document_highlight then
vim.api.nvim_exec(
[[
hi LspReferenceRead cterm=bold ctermbg=red guibg=#464646
hi LspReferenceText cterm=bold ctermbg=red guibg=#464646
hi LspReferenceWrite cterm=bold ctermbg=red guibg=#464646
augroup lsp_document_highlight
autocmd! * <buffer>
autocmd CursorHold <buffer> lua vim.lsp.buf.document_highlight()
autocmd CursorMoved <buffer> lua vim.lsp.buf.clear_references()
augroup END
]],
false
)
end
end
local function add_lsp_buffer_keybindings(bufnr)
local status_ok, wk = pcall(require, "which-key")
if not status_ok then
return
end
local keys = {
["K"] = { "<cmd>lua vim.lsp.buf.hover()<CR>", "Show hover" },
["gd"] = { "<cmd>lua vim.lsp.buf.definition()<CR>", "Goto Definition" },
["gD"] = { "<cmd>lua vim.lsp.buf.declaration()<CR>", "Goto declaration" },
["gr"] = { "<cmd>lua vim.lsp.buf.references()<CR>", "Goto references" },
["gi"] = { "<cmd>lua vim.lsp.buf.implementation()<CR>", "Goto implementation" },
["gs"] = { "<cmd>lua vim.lsp.buf.signature_help()<CR>", "show signature help" },
["gp"] = { "<cmd>lua require'lsp.peek'.Peek('definition')<CR>", "Peek definition" },
["gl"] = {
"<cmd>lua vim.lsp.diagnostic.show_line_diagnostics({ show_header = false, border = 'single' })<CR>",
"Show line diagnostics",
},
}
wk.register(keys, { mode = "n", buffer = bufnr })
end
local function set_smart_cwd(client)
local proj_dir = client.config.root_dir
if lvim.lsp.smart_cwd and proj_dir ~= "/" then
vim.api.nvim_set_current_dir(proj_dir)
require("core.nvimtree").change_tree_dir(proj_dir)
end
end
function M.common_capabilities()
local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities.textDocument.completion.completionItem.snippetSupport = true
capabilities.textDocument.completion.completionItem.resolveSupport = {
properties = {
"documentation",
"detail",
"additionalTextEdits",
},
}
return capabilities
end
function M.get_ls_capabilities(client_id)
local client
if not client_id then
local buf_clients = vim.lsp.buf_get_clients()
for _, buf_client in ipairs(buf_clients) do
if buf_client.name ~= "null-ls" then
client_id = buf_client.id
break
end
end
end
if not client_id then
error "Unable to determine client_id"
end
client = vim.lsp.get_client_by_id(tonumber(client_id))
local enabled_caps = {}
for k, v in pairs(client.resolved_capabilities) do
if v == true then
table.insert(enabled_caps, k)
end
end
return enabled_caps
end
function M.common_on_init(client, bufnr)
if lvim.lsp.on_init_callback then
lvim.lsp.on_init_callback(client, bufnr)
Log:get_default().info "Called lsp.on_init_callback"
return
end
2021-07-31 16:12:29 +02:00
local formatters = lvim.lang[vim.bo.filetype].formatters
if not vim.tbl_isempty(formatters) and formatters[1]["exe"] ~= nil and formatters[1].exe ~= "" then
2021-07-31 16:12:29 +02:00
client.resolved_capabilities.document_formatting = false
Log:get_default().info(
string.format("Overriding language server [%s] with format provider [%s]", client.name, formatters[1].exe)
)
2021-07-31 16:12:29 +02:00
end
end
function M.common_on_attach(client, bufnr)
if lvim.lsp.on_attach_callback then
lvim.lsp.on_attach_callback(client, bufnr)
Log:get_default().info "Called lsp.on_init_callback"
end
lsp_highlight_document(client)
add_lsp_buffer_keybindings(bufnr)
set_smart_cwd(client)
require("lsp.null-ls").setup(vim.bo.filetype)
end
function M.setup(lang)
local lsp_utils = require "lsp.utils"
2021-07-31 16:12:29 +02:00
local lsp = lvim.lang[lang].lsp
if lsp_utils.is_client_active(lsp.provider) then
2021-07-26 20:32:29 +02:00
return
end
2021-08-01 21:13:56 +02:00
local overrides = lvim.lsp.override
if type(overrides) == "table" then
if vim.tbl_contains(overrides, lang) then
2021-08-01 21:13:56 +02:00
return
end
end
if lsp.provider ~= nil and lsp.provider ~= "" then
local lspconfig = require "lspconfig"
lspconfig[lsp.provider].setup(lsp.setup)
end
end
2021-07-29 01:16:45 +02:00
return M