return { -- lspconfig { "neovim/nvim-lspconfig", dependencies = { "onsails/lspkind.nvim", "lukas-reineke/lsp-format.nvim", }, opts = { -- options for vim.diagnostic.config() diagnostics = { underline = true, update_in_insert = false, virtual_text = { spacing = 4, source = "if_many", prefix = "●", -- this will set set the prefix to a function that returns the diagnostics icon based on the severity -- this only works on a recent 0.10.0 build. Will be set to "●" when not supported -- prefix = "icons", }, severity_sort = true, float = { border = 'rounded', source = 'always', header = '', prefix = '', }, }, -- Enable this to enable the builtin LSP inlay hints on Neovim >= 0.10.0 -- Be aware that you also will need to properly configure your LSP server to -- provide the inlay hints. inlay_hints = { enabled = false, }, }, config = function(_, opts) local lsp= require('lspconfig') local lsp_defaults = lsp.util.default_config lsp_defaults.capabilities = vim.tbl_deep_extend( 'force', lsp_defaults.capabilities, require('cmp_nvim_lsp').default_capabilities() ) local sign = function(o) -- See :help sign_define() vim.fn.sign_define(o.name, { texthl = o.name, text = o.text, numhl = '' }) end sign({ name = 'DiagnosticSignError', text = '✘' }) sign({ name = 'DiagnosticSignWarn', text = '▲' }) sign({ name = 'DiagnosticSignHint', text = '⚑' }) sign({ name = 'DiagnosticSignInfo', text = '' }) vim.diagnostic.config({ virtual_text = false, severity_sort = true, float = { border = 'rounded', source = 'always', header = '', prefix = '', }, }) vim.lsp.handlers['textDocument/hover'] = vim.lsp.with( vim.lsp.handlers.hover, { border = 'rounded' } ) vim.lsp.handlers['textDocument/signatureHelp'] = vim.lsp.with( vim.lsp.handlers.signature_help, { border = 'rounded' } ) vim.lsp.handlers["workspace/diagnostic/refresh"] = function(_, _, ctx) local ns = vim.lsp.diagnostic.get_namespace(ctx.client_id) pcall(vim.diagnostic.reset, ns) return true end vim.api.nvim_create_autocmd('BufWritePre', { pattern = '*.go', callback = function() vim.lsp.buf.code_action({ context = { only = { 'source.organizeImports' } }, apply = true }) end }) require("lsp-format").setup { html = { exclude = { "html" } } } local on_attach = function(client) local bufmap = function(mode, lhs, rhs) local opts = {buffer = true} vim.keymap.set(mode, lhs, rhs, opts) end require("lsp-format").on_attach(client) bufmap('n', 'K', 'lua vim.lsp.buf.hover()') bufmap('n', 'gd', 'lua vim.lsp.buf.definition()') bufmap('n', 'gD', 'lua vim.lsp.buf.declaration()') bufmap('n', 'go', 'lua vim.lsp.buf.type_definition()') bufmap('n', 'gs', 'lua vim.lsp.buf.signature_help()') bufmap('n', 'gA', 'Telescope diagnostics') bufmap('n', 'gr', 'Telescope lsp_references') bufmap('n', 'gi', 'Telescope lsp_implementations') bufmap('n', '', 'lua vim.lsp.buf.rename()') bufmap('n', '', 'lua vim.lsp.buf.format({async = true})') bufmap('n', '', 'lua vim.lsp.buf.code_action()') bufmap('x', '', 'lua vim.lsp.buf.range_code_action()') bufmap('n', 'gl', 'lua vim.diagnostic.open_float()') bufmap('n', '[d', 'lua vim.diagnostic.goto_prev()') bufmap('n', ']d', 'lua vim.diagnostic.goto_next()') end lsp.gopls.setup { settings = { gopls = { analyses = { unusedparams = true, unusedvariable = true, shadow = true }, staticcheck = true, }, }, on_attach = on_attach } lsp.clangd.setup { on_attach = on_attach } lsp.ltex.setup { on_attach = on_attach, filetypes = { "latex", "tex", "bib", "mkd", "gitcommit", "text" }, } lsp.svelte.setup { on_attach = on_attach } lsp.tsserver.setup { on_attach = on_attach } lsp.lua_ls.setup { settings = { Lua = { diagnostics = { globals = { 'vim' } }, } }, on_attach = on_attach } end } }