16 lines
528 B
Lua
16 lines
528 B
Lua
|
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 = {
|
||
|
[[┌┐┌┌─┐┌─┐┬ ┬┬┌┬┐]],
|
||
|
[[│││├┤ │ │└┐┌┘││││]],
|
||
|
[[┘└┘└─┘└─┘ └┘ ┴┴ ┴]],
|
||
|
}
|
||
|
alpha.setup(dashboard.config)
|
||
|
end
|
||
|
}
|