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 = { " ", " ", " ", " ", " ", " ", " ", " ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ", " ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ", " ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ", " ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ", " ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ", " ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ ", " ", } -- Set menu dashboard.section.buttons.val = { dashboard.button( "e", " > New file" , ":ene startinsert "), dashboard.button( "Ctrl-p", "󰮗 > Find file", ":Telescope find_files"), dashboard.button( "q", "󰗼 > Quit NVIM", ":qa"), dashboard.button("m", "󱌣 > Mason", ":Mason"), } alpha.setup(dashboard.opts) end }