16 lines
416 B
Lua
16 lines
416 B
Lua
return {
|
|
{
|
|
"echasnovski/mini.starter",
|
|
optional = true,
|
|
opts = function(_, opts)
|
|
local items = {
|
|
{
|
|
name = "Workspaces",
|
|
action = "Telescope workspaces",
|
|
section = string.rep(" ", 22) .. "Telescope",
|
|
},
|
|
}
|
|
vim.list_extend(opts.items, items)
|
|
end,
|
|
}
|
|
}
|