mirror of
https://github.com/OMGeeky/nvim-config-1.git
synced 2025-12-27 14:52:13 +01:00
5 lines
161 B
Lua
5 lines
161 B
Lua
local bufnr = vim.api.nvim_get_current_buf()
|
|
vim.keymap.set("n", "<leader>a", function()
|
|
vim.cmd.RustLsp("codeAction")
|
|
end, { silent = true, buffer = bufnr })
|