21 lines
450 B
Lua
21 lines
450 B
Lua
--- @type LazyPluginSpec[]
|
|
return {
|
|
{
|
|
"rachartier/tiny-code-action.nvim",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-telescope/telescope.nvim",
|
|
},
|
|
event = "LspAttach",
|
|
config = function()
|
|
require("tiny-code-action").setup({
|
|
backend = "vim",
|
|
})
|
|
end,
|
|
},
|
|
{
|
|
"smjonas/inc-rename.nvim",
|
|
config = true,
|
|
},
|
|
}
|