Files
neovim-config/lua/plugins/rip-substitute.lua
T
rootiest 83b3ce29f5 👁️🗨️ Which-key Update
- Implement the new which-key spec
- Particularly: ICONS!
2024-07-12 18:55:02 -04:00

19 lines
493 B
Lua

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