return { "goolord/alpha-nvim", event = "VimEnter", config = function() local alpha = require("alpha") local dashboard = require("alpha.themes.dashboard") -- Set header dashboard.section.header.val = { [[ ]], [[  ]], [[ ████ ██████ █████ ██ ]], [[ ███████████ █████  ]], [[ █████████ ███████████████████ ███ ███████████ ]], [[ █████████ ███ █████████████ █████ ██████████████ ]], [[ █████████ ██████████ █████████ █████ █████ ████ █████ ]], [[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]], [[ ██████ █████████████████████ ████ █████ █████ ████ ██████ ]], [[ ]], } -- Set menu dashboard.section.buttons.val = { dashboard.button( "L", " Lazy ", "Lazy"), dashboard.button( "N", "󰱽 New File ", "ene"), dashboard.button( "Y", " Hyprland ", ":e ~/.config/hypr/"), dashboard.button( "P", " Plugins ", ":e ~/.config/nvim/lua/crux/plugins"), dashboard.button( "H", "󰋖 Command Help ", ":Telescope help_tags"), dashboard.button( "C", " Colors ", ":Telescope colorscheme"), dashboard.button( "Q", "󰩈 Quit ", ":qa"), } -- Send config to alpha alpha.setup(dashboard.opts) -- Disable folding on alpha buffer vim.cmd([[autocmd FileType alpha setlocal nofoldenable]]) end, }