Files
neovim-config/lua/plugins/rip-substitute.lua
T
rootiest 2807567e34 🖍️ Plugin and Theme Formatting
- Formatting cleanup
2024-07-12 21:39:48 -04:00

18 lines
492 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",
},
},
}