13 lines
378 B
Lua
13 lines
378 B
Lua
return {
|
|
{
|
|
"goolord/alpha-nvim",
|
|
event = "VimEnter",
|
|
optional = true,
|
|
opts = function(_, dashboard)
|
|
local button = dashboard.button("w", " " .. " Workspaces", ":Telescope workspaces <CR>")
|
|
button.opts.hl = "AlphaButtons"
|
|
button.opts.hl_shortcut = "AlphaShortcut"
|
|
table.insert(dashboard.section.buttons.val, 4, button)
|
|
end,
|
|
}
|
|
}
|