LunarVim/lua/lsp/init.lua

64 lines
1.5 KiB
Lua
Raw Normal View History

2021-07-28 23:24:05 +02:00
local utils = require "utils"
local service = require "lsp.service"
local lsp_config = {}
2021-07-28 23:13:50 +02:00
function lsp_config.config()
require("lsp.kind").setup()
require("lsp.handlers").setup()
require("lsp.signs").setup()
2021-07-28 23:20:25 +02:00
require("lsp.keybinds").setup()
2021-07-29 01:03:29 +02:00
require("core.autocmds").define_augroups {
_general_lsp = {
{ "FileType", "lspinfo", "nnoremap <silent> <buffer> q :q<CR>" },
},
}
2021-07-28 23:13:50 +02:00
end
2021-07-16 02:49:33 +02:00
function lsp_config.setup(lang)
local lang_server = lvim.lang[lang].lsp
local provider = lang_server.provider
if utils.check_lsp_client_active(provider) then
return
end
local overrides = lvim.lsp.override
2021-07-28 23:24:05 +02:00
if utils.is_table(overrides) then
if utils.has_value(overrides, lang) then
return
end
end
2021-07-28 23:24:05 +02:00
if utils.is_string(overrides) then
if overrides == lang then
return
end
end
local sources = require("lsp.null-ls").setup(lang)
for _, source in pairs(sources) do
local method = source.method
local format_method = "NULL_LS_FORMATTING"
2021-07-28 23:24:05 +02:00
if utils.is_table(method) then
if utils.has_value(method, format_method) then
lang_server.setup.on_attach = service.no_formatter_on_attach
end
end
2021-07-28 23:24:05 +02:00
if utils.is_string(method) then
if method == format_method then
lang_server.setup.on_attach = service.no_formatter_on_attach
end
end
end
2021-07-26 20:32:29 +02:00
if provider == "" or provider == nil then
return
end
require("lspconfig")[provider].setup(lang_server.setup)
end
return lsp_config