mirror of
https://github.com/Tilo-K/neovim-config.git
synced 2026-07-03 21:53:01 +00:00
11 lines
200 B
Lua
11 lines
200 B
Lua
return {
|
|
'filipdutescu/renamer.nvim',
|
|
requires = { { 'nvim-lua/plenary.nvim' } },
|
|
config = function()
|
|
require('renamer').setup {
|
|
border = true,
|
|
with_popup = true,
|
|
}
|
|
end,
|
|
}
|