local icons = require('user.icons') return { "goolord/alpha-nvim", config = function() local alpha = require'alpha' local dashboard = require'alpha.themes.dashboard' dashboard.section.header.val = { [[ __ ]], [[ ___ ___ ___ __ __ /\_\ ___ ___ ]], [[ / _ `\ / __`\ / __`\/\ \/\ \\/\ \ / __` __`\ ]], [[/\ \/\ \/\ __//\ \_\ \ \ \_/ |\ \ \/\ \/\ \/\ \ ]], [[\ \_\ \_\ \____\ \____/\ \___/ \ \_\ \_\ \_\ \_\]], [[ \/_/\/_/\/____/\/___/ \/__/ \/_/\/_/\/_/\/_/]], } dashboard.section.buttons.val = { dashboard.button("e", icons.files.text .. " New file" , ":ene startinsert"), dashboard.button("s", icons.search .. " Search files" , ":Telescope find_files"), dashboard.button("o", icons.search .. " Old files" , ":Telescope oldfiles"), dashboard.button("q", icons.close .. " Quit" , ":qa"), } alpha.setup(dashboard.config) end }