dotfiles/.config/nvim/lua/plugins/alpha.lua
2023-07-29 18:37:31 +02:00

19 lines
1.1 KiB
Lua

return {
{
"goolord/alpha-nvim",
event = "VimEnter",
opts = function()
local dashboard = require("alpha.themes.dashboard")
local logo = [[
███╗ ███╗ █████╗ ████████╗████████╗ ██╗██████╗ ███████╗
████╗ ████║██╔══██╗╚══██╔══╝╚══██╔══╝ ██║██╔══██╗██╔════╝
██╔████╔██║███████║ ██║ ██║ ██║██║ ██║█████╗
██║╚██╔╝██║██╔══██║ ██║ ██║ ██║██║ ██║██╔══╝
██║ ╚═╝ ██║██║ ██║ ██║ ██║ ██║██████╔╝███████╗
╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═════╝ ╚══════╝
]]
dashboard.section.header.val = vim.split(logo, "\n")
return dashboard
end
}
}