return { "goolord/alpha-nvim", dependencies = { "nvim-tree/nvim-web-devicons" }, config = function() local alpha = require("alpha") local dashboard = require("alpha.themes.dashboard") dashboard.section.header.val = { "", "", "", "", "", "", "███▄▄▄▄ ▄████████ ▄██████▄ ▄█ █▄ ▄█ ▄▄▄▄███▄▄▄▄ ", "███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ███ ▄██▀▀▀███▀▀▀██▄", "███ ███ ███ █▀ ███ ███ ███ ███ ███▌ ███ ███ ███", "███ ███ ▄███▄▄▄ ███ ███ ███ ███ ███▌ ███ ███ ███", "███ ███ ▀▀███▀▀▀ ███ ███ ███ ███ ███▌ ███ ███ ███", "███ ███ ███ █▄ ███ ███ ███ ███ ███ ███ ███ ███", "███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███", " ▀█ █▀ ██████████ ▀██████▀ ▀██████▀ █▀ ▀█ ███ █▀ ", } dashboard.section.buttons.val = { dashboard.button("n", " new", ":ene startinsert "), dashboard.button("f", " find", ":Telescope find_files"), dashboard.button("r", " recent", ":Telescope oldfiles"), dashboard.button("q", " quit", ":qa"), } alpha.setup(dashboard.opts) end, }