diff --git a/config/nvim/lua/fschauen/plugins/lsp.lua b/config/nvim/lua/fschauen/plugins/lsp.lua index 1a5971d..91f5dc3 100644 --- a/config/nvim/lua/fschauen/plugins/lsp.lua +++ b/config/nvim/lua/fschauen/plugins/lsp.lua @@ -6,41 +6,37 @@ M.dependencies = { 'Hoffs/omnisharp-extended-lsp.nvim', } -M.event = { - 'BufReadPre', - 'BufNewFile', -} +M.event = { 'BufReadPre', 'BufNewFile' } -M.config = function(--[[plugin]]_, --[[opts]]_) +M.config = function( --[[plugin]] _, --[[opts]] _) local border = { border = 'rounded' } - local default_opts = { - capabilities = vim.tbl_deep_extend( - 'force', + local defaults = { + capabilities = vim.tbl_deep_extend('force', vim.lsp.protocol.make_client_capabilities(), - vim.F.npcall(function() require('cmp_nvim_lsp').default_capabilities() end) or {} - ), + vim.F.npcall(function() require('cmp_nvim_lsp').default_capabilities() end) or {}), handlers = { ['textDocument/hover'] = vim.lsp.with(vim.lsp.handlers.hover, border), ['textDocument/signatureHelp'] = vim.lsp.with(vim.lsp.handlers.signature_help, border), }, - on_attach = function(--[[client]]_, bufnr) - vim.bo.omnifunc = 'v:lua.vim.lsp.omnifunc' -- do completion with - local map, opts = vim.keymap.set, { buffer = bufnr } - map('n', 'c', vim.lsp.buf.code_action, opts) - map('n', 'f', vim.lsp.buf.format, opts) - map('n', 'gd', vim.lsp.buf.definition, opts) - map('n', 'gD', vim.lsp.buf.declaration, opts) - map('n', 'gi', vim.lsp.buf.implementation, opts) - map('n', 'grr', vim.lsp.buf.rename, opts) - map('n', 'gt', vim.lsp.buf.type_definition, opts) - map('n', 'K', vim.lsp.buf.hover, opts) - map('i', '', vim.lsp.buf.signature_help, opts) + on_attach = function( --[[client]] _, buffer) + local map = vim.keymap.set + local buf = vim.lsp.buf + local map_opts = { buffer = buffer } + map('n', 'c', buf.code_action, map_opts) + map('n', 'f', buf.format, map_opts) + map('n', 'gd', buf.definition, map_opts) + map('n', 'gD', buf.declaration, map_opts) + map('n', 'gi', buf.implementation, map_opts) + map('n', 'grr', buf.rename, map_opts) + map('n', 'gt', buf.type_definition, map_opts) + map('n', 'K', buf.hover, map_opts) + map('i', '', buf.signature_help, map_opts) end, - on_init = function(client, --[[init_result]]_) + on_init = function(client, --[[init_result]] _) -- Opt out of semantic highlighting because it has been causing the issues -- https://github.com/neovim/nvim-lspconfig/issues/2542#issuecomment-1547019213 if client.server_capabilities then @@ -49,58 +45,59 @@ M.config = function(--[[plugin]]_, --[[opts]]_) end, } + local server_opts = setmetatable({ + lua_ls = function(opts) + return vim.tbl_deep_extend('force', opts, { + settings = { + Lua = { + -- I'm using lua only inside neovim, so the runtime is LuaJIT. + runtime = { version = 'LuaJIT' }, + + -- Get the language server to recognize the `vim` global. + diagnostics = { globals = { 'vim' } }, + + -- Make the server aware of Neovim runtime files. + workspace = { library = vim.api.nvim_get_runtime_file('', true) }, + + -- Do not send telemetry data containing a randomized but unique identifier + telemetry = { enable = false }, + }, + }, + }) + end, + omnisharp = function(opts) + return vim.tbl_deep_extend('force', opts, { + -- Use .editoconfig for code style, naming convention and analyzer settings. + enable_editorconfig_support = true, + + -- Show unimported types and add`using` directives. + enable_import_completion = true, + + -- Enable roslyn analyzers, code fixes, and rulesets. + enable_roslyn_analyzers = true, + + -- Don't include preview versions of the .NET SDK. + sdk_include_prereleases = false, + + handlers = { ['textDocument/definition'] = require('omnisharp_extended').handler }, + }) + end, + }, { + __index = function( --[[tbl]] _, --[[key]] _) + return function(opts) return opts end + end + }) + require('lspconfig.ui.windows').default_options = border require('mason').setup { ui = border } require('mason-lspconfig').setup { handlers = { - --[[default =]] function(server) - require('lspconfig')[server].setup(default_opts) - end, - - lua_ls = function(--[[server]]_) - local opts = vim.tbl_deep_extend('force', default_opts, { - settings = { - Lua = { - -- I'm using lua only inside neovim, so the runtime is LuaJIT. - runtime = { version = 'LuaJIT' }, - - -- Get the language server to recognize the `vim` global. - diagnostics = { globals = {'vim'} }, - - -- Make the server aware of Neovim runtime files. - workspace = { library = vim.api.nvim_get_runtime_file("", true) }, - - -- Do not send telemetry data containing a randomized but unique identifier - telemetry = { enable = false }, - }, - }, - }) - require('lspconfig').lua_ls.setup(opts) - end, - - omnisharp = function(--[[server]]_) - local opts = vim.tbl_deep_extend('force', default_opts, { - -- Use .editoconfig for code style, naming convention and analyzer settings. - enable_editorconfig_support = true, - - -- Show unimported types and add`using` directives. - enable_import_completion = true, - - -- Enable roslyn analyzers, code fixes, and rulesets. - enable_roslyn_analyzers = true, - - -- Don't include preview versions of the .NET SDK. - sdk_include_prereleases = false, - - handlers = { - ['textDocument/definition'] = require('omnisharp_extended').handler, - }, - }) - require('lspconfig').omnisharp.setup(opts) + function(server_name) + local opts = server_opts[server_name](defaults) + require('lspconfig')[server_name].setup(opts) end, }, } end return M -