Install rewrap

This commit is contained in:
Marcelo Jacobus 2024-06-19 10:10:52 -03:00
parent ec0fed3d0e
commit 888d0f48b2

10
lua/plugins/trevj.lua Normal file
View file

@ -0,0 +1,10 @@
return {
"AckslD/nvim-trevJ.lua",
config = function()
local map = LazyVim.safe_keymap_set
map("n", "<leader>rw", function()
require("trevj").format_at_cursor()
end, { desc = "Rewrap arguments (one comma per line)" })
end,
}