|
|
@ -2,19 +2,29 @@ return { |
|
|
|
'goolord/alpha-nvim', |
|
|
|
dependencies = { |
|
|
|
'echasnovski/mini.icons', |
|
|
|
{ |
|
|
|
"MaximilianLloyd/ascii.nvim", |
|
|
|
dependencies = { |
|
|
|
"MunifTanjim/nui.nvim" |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
config = function () |
|
|
|
local alpha = require("alpha") |
|
|
|
local dashboard = require("alpha.themes.dashboard") |
|
|
|
|
|
|
|
local neovim_lean = { |
|
|
|
[[ ]], |
|
|
|
[[ _/ _/ _/ _/ _/ ]], |
|
|
|
[[ _/_/ _/ _/_/ _/_/ _/ _/ _/_/_/ _/_/ ]], |
|
|
|
[[ _/ _/ _/ _/_/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ ]], |
|
|
|
[[ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ ]], |
|
|
|
[[ _/ _/ _/_/_/ _/_/ _/ _/ _/ _/ _/ ]], |
|
|
|
[[ ]], |
|
|
|
} |
|
|
|
|
|
|
|
local neovim_decimal = { |
|
|
|
[[ ]], |
|
|
|
[[ 78 101 111 86 105 109 ]], |
|
|
|
[[ ]], |
|
|
|
} |
|
|
|
|
|
|
|
-- Set the ASCII art |
|
|
|
dashboard.section.header.val = require("ascii").art.text.neovim.lean |
|
|
|
dashboard.section.header.val = neovim_lean |
|
|
|
|
|
|
|
-- Remove other sections (buttons, footer, etc.) to show only the ASCII art |
|
|
|
dashboard.section.buttons.val = {} |
|
|
|