diff --git a/lua/plugins/alpha-nvim.lua b/lua/plugins/alpha-nvim.lua index 4f296871fe06103939dee94d7d1a57be789f72d1..470ee0a1c29037346aa8894ff58c08301f4484b7 100644 --- a/lua/plugins/alpha-nvim.lua +++ b/lua/plugins/alpha-nvim.lua @@ -1,18 +1,21 @@ -- Splash screen + +local logo_spooky = { + [[ ▄▀▀▄ ▀▄ ▄▀▀█▄▄▄▄ ▄▀▀▀▀▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀█▀▄ ▄▀▀▄ ▄▀▄ ]], + [[ █ █ █ █ ■▄▀ ■█ █ █ █ █ █ █ █ █ █ ▀ █ ]], + [[ ■█ ▀█ █▄▄▄▄▄ █ █ ■█ █ ■█ ■■█ █ ]], + [[ █ █ █ ▌ ▀▄ ▄▀ █ ▄▀ █ █ █ ]], + [[ ▄▀ █ ▄▀▄▄▄▄ ▀▀▀▀ ▀▄▀ ▄▀▀▀▀▀▄ ▄▀ ▄▀ ]], + [[ █ ■█ ■█ █ █ █ ]], + [[ ■■■■■■]] +} + return { "goolord/alpha-nvim", dependencies = { "nvim-tree/nvim-web-devicons" }, config = function () local dashboard = require('alpha.themes.dashboard') - dashboard.section.header.val = { - [[ ▄▀▀▄ ▀▄ ▄▀▀█▄▄▄▄ ▄▀▀▀▀▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀█▀▄ ▄▀▀▄ ▄▀▄ ]], - [[ █ █ █ █ ■▄▀ ■█ █ █ █ █ █ █ █ █ █ ▀ █ ]], - [[ ■█ ▀█ █▄▄▄▄▄ █ █ ■█ █ ■█ ■■█ █ ]], - [[ █ █ █ ▌ ▀▄ ▄▀ █ ▄▀ █ █ █ ]], - [[ ▄▀ █ ▄▀▄▄▄▄ ▀▀▀▀ ▀▄▀ ▄▀▀▀▀▀▄ ▄▀ ▄▀ ]], - [[ █ ■█ ■█ █ █ █ ]], - [[ ■■■■■■]] - } require('alpha').setup( dashboard.opts ) + dashboard.section.header.val = logo_spooky end }