Added missing nvim rust tools config
This commit is contained in:
parent
03324d92c8
commit
2199599f58
12
nvim/.config/nvim/lua/user/rust-tools.lua
Normal file
12
nvim/.config/nvim/lua/user/rust-tools.lua
Normal file
@ -0,0 +1,12 @@
|
||||
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,
|
||||
},
|
||||
})
|
Loading…
Reference in New Issue
Block a user