diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua index e7a3056..baaa19c 100644 --- a/after/plugin/lsp.lua +++ b/after/plugin/lsp.lua @@ -3,28 +3,28 @@ local lsp = require("lsp-zero") lsp.preset("recommended") lsp.ensure_installed({ - 'tsserver' + 'tsserver' }) -- Fix Undefined global 'vim' lsp.configure('sumneko_lua', { - settings = { - Lua = { - diagnostics = { - globals = { 'vim' } - } - } + settings = { + Lua = { + diagnostics = { + globals = { 'vim' } + } } + } }) local cmp = require('cmp') local cmp_select = { behavior = cmp.SelectBehavior.Select } local cmp_mappings = lsp.defaults.cmp_mappings({ - [''] = cmp.mapping.select_prev_item(cmp_select), - [''] = cmp.mapping.select_next_item(cmp_select), - [''] = cmp.mapping.confirm({ select = true }), - [""] = cmp.mapping.complete(), + [''] = cmp.mapping.select_prev_item(cmp_select), + [''] = cmp.mapping.select_next_item(cmp_select), + [''] = cmp.mapping.confirm({ select = true }), + [""] = cmp.mapping.complete(), }) cmp_mappings[''] = nil @@ -32,45 +32,45 @@ cmp_mappings[''] = nil lsp.setup_nvim_cmp({ - mapping = cmp_mappings + mapping = cmp_mappings }) lsp.set_preferences({ - suggest_lsp_servers = false, - sign_icons = { - error = 'E', - warn = 'W', - hint = 'H', - info = 'I' - } + suggest_lsp_servers = true, + sign_icons = { + error = 'E', + warn = 'W', + hint = 'H', + info = 'I' + } }) lsp.on_attach(function(client, bufnr) - local opts = { buffer = bufnr, remap = false } + local opts = { buffer = bufnr, remap = false } - vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts) - vim.keymap.set("n", "K", function() vim.lsp.buf.hover() end, opts) - vim.keymap.set("n", "vws", function() vim.lsp.buf.workspace_symbol() end, opts) - vim.keymap.set("n", "gl", function() vim.diagnostic.open_float() end, opts) - vim.keymap.set("n", "[d", function() vim.diagnostic.goto_next() end, opts) - vim.keymap.set("n", "]d", function() vim.diagnostic.goto_prev() end, opts) - vim.keymap.set("n", "la", function() vim.lsp.buf.code_action() end, opts) - vim.keymap.set("n", "lf", function() vim.lsp.buf.format() end, opts) - vim.keymap.set("n", "gr", function() vim.lsp.buf.references() end, opts) - vim.keymap.set("n", "vrn", function() vim.lsp.buf.rename() end, opts) - vim.keymap.set("i", "", function() vim.lsp.buf.signature_help() end, opts) + vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts) + vim.keymap.set("n", "K", function() vim.lsp.buf.hover() end, opts) + vim.keymap.set("n", "vws", function() vim.lsp.buf.workspace_symbol() end, opts) + vim.keymap.set("n", "gl", function() vim.diagnostic.open_float() end, opts) + vim.keymap.set("n", "[d", function() vim.diagnostic.goto_next() end, opts) + vim.keymap.set("n", "]d", function() vim.diagnostic.goto_prev() end, opts) + vim.keymap.set("n", "la", function() vim.lsp.buf.code_action() end, opts) + vim.keymap.set("n", "lf", function() vim.lsp.buf.format() end, opts) + vim.keymap.set("n", "gr", function() vim.lsp.buf.references() end, opts) + vim.keymap.set("n", "vrn", function() vim.lsp.buf.rename() end, opts) + vim.keymap.set("i", "", function() vim.lsp.buf.signature_help() end, opts) end) -lsp.skip_server_setup({'rust_analyzer'}) +lsp.skip_server_setup({ 'rust_analyzer' }) lsp.setup() vim.diagnostic.config({ - virtual_text = true, - update_in_insert = false, - underline = true, - severity_sort = false, - float = true, + virtual_text = true, + update_in_insert = false, + underline = true, + severity_sort = false, + float = true, }) -- rust tools @@ -79,24 +79,17 @@ local rt = require("rust-tools") -- Configure LSP through rust-tools.nvim plugin. -- rust-tools will configure and enable certain LSP features for us. -- See https://github.com/simrat39/rust-tools.nvim#configuration -local opts = { - tools = { - runnables = { - use_telescope = true, - }, - inlay_hints = { - auto = true, - show_parameter_hints = false, - parameter_hints_prefix = "", - other_hints_prefix = "", - }, - }, - - -- all the opts to send to nvim-lspconfig - -- these override the defaults set by rust-tools.nvim - -- see https://github.com/neovim/nvim-lspconfig/blob/master/CONFIG.md#rust_analyzer +rt.setup({ server = { - -- on_attach is a callback called when the language server attachs to the buffer + on_attach = function(_, bufnr) + -- Hover actions + vim.keymap.set("n", "K", rt.hover_actions.hover_actions, { buffer = bufnr }) + -- Code action groups + vim.keymap.set("n", "la", rt.code_action_group.code_action_group, { buffer = bufnr }) + vim.keymap.set("n", "lg", vim.diagnostic.open_float, { buffer = bufnr }) + vim.keymap.set("n", "lf", vim.lsp.buf.format, { buffer = bufnr }) + end, + settings = { -- to enable rust-analyzer settings visit: -- https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/user/generated_config.adoc @@ -107,26 +100,10 @@ local opts = { }, cargo = { -- to enable include! macro being read - loadOutDirsFromCheck = true + -- loadOutDirsFromCheck = true, + -- buildScripts = true, }, }, }, }, -} - --- todo: centralize and use the same callback for lspzero and rust-tools -opts.server.on_attach = function(client, bufnr) - local opts = { buffer = bufnr, remap = false } - - vim.keymap.set("n", "gd", function() vim.lsp.buf.definition() end, opts) - vim.keymap.set("n", "K", function() rt.hover_actions.hover_actions() end, opts) - - vim.keymap.set("n", "gl", function() vim.diagnostic.open_float() end, opts) - - vim.keymap.set("n", "la", function() vim.lsp.buf.code_action() end, opts) - - vim.keymap.set("n", "lf", function() vim.lsp.buf.format() end, opts) - vim.keymap.set("n", "gr", function() vim.lsp.buf.references() end, opts) -end - -rt.setup(opts) +})