mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
14 lines
253 B
Lua
Executable file
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",
|
|
},
|
|
},
|
|
}
|