Adding the incremental rename plugin, though its workspace-wide rename needs to be figured out.

This commit is contained in:
Finch 2024-03-06 12:32:45 -06:00
parent d42f0429ab
commit 95a58ffb1f

View File

@ -0,0 +1,14 @@
return {
'smjonas/inc-rename.nvim',
config = function()
require('inc_rename').setup()
end,
keys = {
{
'<leader>rn',
function()
return ':IncRename ' .. vim.fn.expand('<cword>')
end,
},
},
}