mirror of https://github.com/LazyVim/starter
12 lines
239 B
Lua
12 lines
239 B
Lua
|
return {
|
||
|
"rachartier/tiny-code-action.nvim",
|
||
|
dependencies = {
|
||
|
{ "nvim-lua/plenary.nvim" },
|
||
|
{ "nvim-telescope/telescope.nvim" },
|
||
|
},
|
||
|
event = "LspAttach",
|
||
|
config = function()
|
||
|
require("tiny-code-action").setup()
|
||
|
end,
|
||
|
}
|