Adding the incremental rename plugin, though its workspace-wide rename needs to be figured out.
This commit is contained in:
parent
d42f0429ab
commit
95a58ffb1f
14
nvim/lua/plugins/inc-rename.lua
Normal file
14
nvim/lua/plugins/inc-rename.lua
Normal 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,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user