diff --git a/lua/lazyvim/plugins/extras/util/project.lua b/lua/lazyvim/plugins/extras/util/project.lua index 63e2e9b9..50a13666 100644 --- a/lua/lazyvim/plugins/extras/util/project.lua +++ b/lua/lazyvim/plugins/extras/util/project.lua @@ -27,4 +27,17 @@ return { table.insert(dashboard.section.buttons.val, 4, button) end, }, + { + "echasnovski/mini.starter", + opts = function(_, opts) + local items = { + { + name = "Projects", + action = "Telescope projects", + section = string.rep(" ", 22) .. "Telescope", + }, + } + vim.list_extend(opts.items, items) + end, + }, }