Configure lsp client and Rust's lsp server

This commit is contained in:
Steins7 2022-10-18 12:08:51 +02:00
parent 0076f8b800
commit b25bd71619

View File

@ -2,6 +2,26 @@ local function manage_plugins()
local plugins = {
["https://github.com/faerryn/plogins.nvim.git"] = {},
["https://github.com/tpope/vim-sensible"] = {},
["https://github.com/neovim/nvim-lspconfig"] = {},
["https://github.com/simrat39/rust-tools.nvim"] = {
packadd_after = { ["https://github.com/neovim/nvim-lspconfig"] = true },
packadd_hook = function()
local rt = require("rust-tools")
rt.setup({
server = {
on_attach = function(_, bufnr)
-- Hover actions
vim.keymap.set("n", "<C-space>",
rt.hover_actions.hover_actions, { buffer = bufnr })
-- Code action groups
vim.keymap.set("n", "<Leader>a",
rt.code_action_group.code_action_group, { buffer = bufnr })
end,
},
})
end
},
}
local manager = require("plogins").manage(plugins)