You've already forked dotfiles
Adding the incremental rename plugin, though its workspace-wide rename needs to be figured out.
This commit is contained in:
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,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user