-- return { -- 'goolord/alpha-nvim', -- dependencies = { 'nvim-tree/nvim-web-devicons' }, -- config = function() -- require 'alpha'.setup(require 'alpha.themes.startify'.config) -- end -- } return { 'goolord/alpha-nvim', event = 'VimEnter', config = function() local dashboard = require 'alpha.themes.dashboard' dashboard.section.header.val = { "██████████████████████████████████████████████████", "█░░░░░░░░░░░░░░█░░░░░░██░░░░░░█░░░░░░░░██░░░░░░░░█", "█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀▄▀░░██░░▄▀▄▀░░█", "█░░░░░░▄▀░░░░░░█░░▄▀░░██░░▄▀░░█░░░░▄▀░░██░░▄▀░░░░█", "█████░░▄▀░░█████░░▄▀░░██░░▄▀░░███░░░░▄▀▄▀▄▀░░░░███", "█████░░▄▀░░█████░░▄▀░░██░░▄▀░░█████░░▄▀▄▀▄▀░░█████", "█████░░▄▀░░█████░░▄▀░░██░░▄▀░░███░░░░▄▀▄▀▄▀░░░░███", "█████░░▄▀░░█████░░▄▀░░░░░░▄▀░░█░░░░▄▀░░██░░▄▀░░░░█", "█████░░▄▀░░█████░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀░░██░░▄▀▄▀░░█", "█████░░░░░░█████░░░░░░░░░░░░░░█░░░░░░░░██░░░░░░░░█", "██████████████████████████████████████████████████", } dashboard.section.header.opts = { position = 'center', hl = 'Comment', } require('alpha').setup(require('alpha.themes.dashboard').config) dashboard.section.buttons.val = { dashboard.button('SPC f f', ' Find File', 'Telescope find_files'), dashboard.button('SPC f r', ' Recent Files', 'Telescope oldfiles'), dashboard.button('SPC f t', ' Find in Files', 'Telescope live_grep'), } end, dependencies = { 'nvim-tree/nvim-web-devicons' }, }