feat: adding keymaps and health
This commit is contained in:
parent
1fd5843cf1
commit
a266489958
7 changed files with 344 additions and 0 deletions
20
lua/custom/plugins/languages/rust.lua
Normal file
20
lua/custom/plugins/languages/rust.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
return {'simrat39/rust-tools.nvim',
|
||||
dependencies = {"rust-lang/rust.vim"},
|
||||
config = function()
|
||||
vim.g.rustfmt_autosave = 1
|
||||
vim.g.rust_clip_command = "pbcopy"
|
||||
|
||||
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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue