---@module 'lazy' ---@type LazySpec return { { 'goolord/alpha-nvim', event = 'VimEnter', dependencies = { 'nvim-tree/nvim-web-devicons' }, config = function() local alpha = require 'alpha' local dashboard = require 'alpha.themes.dashboard' dashboard.section.header.val = { ' ', ' NVIM FORGE ', ' ', } dashboard.section.buttons.val = { dashboard.button('f', '󰱼 Find File', ':Telescope find_files'), dashboard.button('r', ' Recent Files', ':Telescope oldfiles'), dashboard.button('s', '🧪 Staus', 'checkhealth'), -- check system health dashboard.button('m', ' Manual', 'help user-manual'), -- help specific to Neovim dashboard.button('h', '󰖟 Help', 'help'), -- general help dashboard.button('q', ' Quit', ':qa'), } alpha.setup(dashboard.config) end, }, }