starter/lua/plugins/override/dashboard.lua

38 lines
2.7 KiB
Lua
Raw Normal View History

2024-07-04 15:22:44 +08:00
local logo = [[
]]
local section = require("alpha.themes.dashboard").section
return {
"goolord/alpha-nvim",
opts = {
section = {
header = {
val = vim.split(logo, "\n"),
},
},
opts = {
layout = {
section.header,
{ type = "padding", val = 1 },
section.buttons,
section.footer,
},
},
},
}