starter/lua/plugins/rip.lua
2025-11-18 07:27:56 -03:00

14 lines
253 B
Lua
Executable file

return {
"chrisgrieser/nvim-rip-substitute",
cmd = "RipSubstitute",
keys = {
{
"<leader>fs",
function()
require("rip-substitute").sub()
end,
mode = { "n", "x" },
desc = " rip substitute",
},
},
}