mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
feat(project): add to mini.starter
This commit is contained in:
parent
81ab5bed7a
commit
da45b5608f
1 changed files with 13 additions and 0 deletions
|
|
@ -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,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue