feat(project): add to mini.starter

This commit is contained in:
Jonas Holst Damtoft 2023-04-20 12:33:09 +02:00
parent 81ab5bed7a
commit da45b5608f

View file

@ -27,4 +27,17 @@ return {
table.insert(dashboard.section.buttons.val, 4, button) table.insert(dashboard.section.buttons.val, 4, button)
end, 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,
},
} }