return { 'goolord/alpha-nvim', dependencies = { 'nvim-tree/nvim-web-devicons', 'nvim-lua/plenary.nvim' }, config = function() local alpha = require('alpha') local dashboard = require('alpha.themes.dashboard') dashboard.section.header.val = { " ▄ ▄███▄ ████▄ ▄ ▄█ █▀▄▀█", " █ █▀ ▀ █ █ █ ██ █ █ █", "██ █ ██▄▄ █ █ █ █ ██ █ ▄ █", "█ █ █ █▄ ▄▀ ▀████ █ █ ▐█ █ █", "█ █ █ ▀███▀ █ █ ▐ █ ", "█ ██ █▐ ▀ ", " ▐ ", } dashboard.section.buttons.val = { dashboard.button("e", " > New file", ":ene startinsert "), dashboard.button("f", " > Find file", ":Telescope find_files"), dashboard.button("r", " > Recent", ":Telescope oldfiles"), dashboard.button("s", " > Settings", ":e $MYVIMRC | :cd %:p:h | split . | wincmd k | pwd"), dashboard.button("q", "󰩈 > Quit", ":qa"), } local fortune = require("alpha.fortune") dashboard.section.footer.val = fortune() alpha.setup(dashboard.config) end }