kickstart.nvim/lua/custom/plugins/alpha-nvim.lua

63 lines
4.1 KiB
Lua

return {
'goolord/alpha-nvim',
priority = 1000,
dependencies = {
'nvim-tree/nvim-web-devicons',
'echasnovski/mini.icons',
'nvim-lua/plenary.nvim',
},
config = function()
require('alpha').setup(require('alpha.themes.theta').config)
local alpha = require 'alpha'
local dashboard = require 'alpha.themes.startify'
dashboard.section.header.val = {
[[ ]],
[[ ]],
[[ ]],
[[ ]],
[[  ]],
[[ ████ ██████ █████ ██ ]],
[[ ███████████ █████  ]],
[[ █████████ ███████████████████ ███ ███████████ ]],
[[ █████████ ███ █████████████ █████ ██████████████ ]],
[[ █████████ ██████████ █████████ █████ █████ ████ █████ ]],
[[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]],
[[ ██████ █████████████████████ ████ █████ █████ ████ ██████ ]],
[[ ]],
[[ ]],
[[ ]],
}
-- dashboard.section.header.val = {
-- [[ ]],
-- [[ ]],
-- [[ ]],
-- [[ ]],
-- [[ .-') _ ('-. (`-. _ .-') ]],
-- [[ ( OO ) )_( OO) _(OO )_ ( '.( OO )_ ]],
-- [[,--./ ,--,'(,------. .-'),-----. ,--(_/ ,. \ ,-.-') ,--. ,--.)]],
-- [[| \ | |\ | .---'( OO' .-. '\ \ /(__/ | |OO)| `.' | ]],
-- [[| \| | )| | / | | | | \ \ / / | | \| | ]],
-- [[| . |/(| '--. \_) | |\| | \ ' /, | |(_/| |'.'| | ]],
-- [[| |\ | | .--' \ | | | | \ /__),| |_.'| | | | ]],
-- [[| | \ | | `---. `' '-' ' \ / (_| | | | | | ]],
-- [[`--' `--' `------' `-----' `-' `--' `--' `--' ]],
-- [[ ]],
-- [[ ]],
-- [[ ]],
-- }
-- dashboard.section.header.val = {
--
-- [[ _ _ _ ]],
-- [[ | \| | ___ ___ __ __ (_) _ __ ]],
-- [[ | .` | / -_) / _ \ \ V / | | | ' \ ]],
-- [[ |_|\_| \___| \___/ _\_/_ _|_|_ |_|_|_| ]],
-- [[ _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| ]],
-- [[ "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' ]],
-- }
alpha.setup(dashboard.opts)
end,
}