return { 'goolord/alpha-nvim', dependencies = { 'echasnovski/mini.icons', 'nvim-lua/plenary.nvim', "nvim-telescope/telescope.nvim" }, config = function () local alpha = require("alpha") local dashboard = require("alpha.themes.dashboard") dashboard.section.header.val = { " ", " ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ", " ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ", " ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ", " ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ", " ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ", " ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ ", " ", } dashboard.section.header.opts.hl = "Red" dashboard.section.buttons.val = { dashboard.button( "e", " > New file" , ":ene startinsert "), dashboard.button( "f", " > Find file", ":cd $HOME | Telescope find_files"), dashboard.button( "r", " > Recent" , ":Telescope oldfiles"), dashboard.button( "s", " > Settings" , ":e $MYVIMRC | :cd %:p:h"), dashboard.button( "q", " > Quit NVIM", ":qa"), } alpha.setup(dashboard.opts) end }