123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- local lsp_config = {}
- function lsp_config.config()
- require("lsp.kind").setup()
- require("lsp.handlers").setup()
- require("lsp.signs").setup()
- require("ls.keybindings").setup()
- end
- -- My font didn't like this :/
- -- vim.api.nvim_set_keymap(
- -- "n",
- -- "gl",
- -- '<cmd>lua vim.lsp.diagnostic.show_line_diagnostics({ show_header = false, border = { { "🭽", "FloatBorder" }, { "▔", "FloatBorder" }, { "🭾", "FloatBorder" }, { "▕", "FloatBorder" }, { "🭿", "FloatBorder" }, { "▁", "FloatBorder" }, { "🭼", "FloatBorder" }, { "▏", "FloatBorder" }, } })<CR>',
- -- { noremap = true, silent = true }
- -- )
- local function no_formatter_on_attach(client, bufnr)
- if lvim.lsp.on_attach_callback then
- lvim.lsp.on_attach_callback(client, bufnr)
- end
- require("lsp.utils").lsp_highlight_document(client)
- client.resolved_capabilities.document_formatting = false
- end
- function lsp_config.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
- require("core.autocmds").define_augroups {
- _general_lsp = {
- { "FileType", "lspinfo", "nnoremap <silent> <buffer> q :q<CR>" },
- },
- }
- local function is_table(t)
- return type(t) == "table"
- end
- local function is_string(t)
- return type(t) == "string"
- end
- local function has_value(tab, val)
- for _, value in ipairs(tab) do
- if value == val then
- return true
- end
- end
- return false
- end
- function lsp_config.setup(lang)
- local lang_server = lvim.lang[lang].lsp
- local provider = lang_server.provider
- if require("utils").check_lsp_client_active(provider) then
- return
- end
- local overrides = lvim.lsp.override
- if is_table(overrides) then
- if has_value(overrides, lang) then
- return
- end
- end
- if 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"
- if is_table(method) then
- if has_value(method, format_method) then
- lang_server.setup.on_attach = no_formatter_on_attach
- end
- end
- if is_string(method) then
- if method == format_method then
- lang_server.setup.on_attach = no_formatter_on_attach
- end
- end
- end
- if provider == "" or provider == nil then
- return
- end
- require("lspconfig")[provider].setup(lang_server.setup)
- end
- return lsp_config
|