59 lines
3.0 KiB
Lua
59 lines
3.0 KiB
Lua
local staus, dashboard = pcall(require, "dashboard")
|
|
if not staus then
|
|
return
|
|
end
|
|
|
|
dashboard.setup({
|
|
theme = "doom",
|
|
config = {
|
|
header = {
|
|
[[ ]],
|
|
[[ ================= =============== =============== ======== ======== ]],
|
|
[[ \\ . . . . . . .\\ //. . . . . . .\\ //. . . . . . .\\ \\. . .\\// . . // ]],
|
|
[[ ||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\/ . . .|| ]],
|
|
[[ || . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . || ]],
|
|
[[ ||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .|| ]],
|
|
[[ || . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\ . . . . || ]],
|
|
[[ ||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\_ . .|. .|| ]],
|
|
[[ || . _|| || || || || ||_ . || || . _|| || || || |\ `-_/| . || ]],
|
|
[[ ||_-' || .|/ || || \|. || `-_|| ||_-' || .|/ || || | \ / |-_.|| ]],
|
|
[[ || ||_-' || || `-_|| || || ||_-' || || | \ / | `|| ]],
|
|
[[ || `' || || `' || || `' || || | \ / | || ]],
|
|
[[ || .===' `===. .==='.`===. .===' /==. | \/ | || ]],
|
|
[[ || .==' \_|-_ `===. .===' _|_ `===. .===' _-|/ `== \/ | || ]],
|
|
[[ || .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \/ | || ]],
|
|
[[ || .==' _-' `-__\._-' `-_./__-' `' |. /| | || ]],
|
|
[[ ||.==' _-' `' | /==.|| ]],
|
|
[[ ==' _-' \/ `== ]],
|
|
[[ \ _-' `-_ / ]],
|
|
[[ `'' ``' ]],
|
|
[[ ]],
|
|
[[ [ TIP: To exit Neovim, just power off your computer. ] ]],
|
|
[[ ]],
|
|
},
|
|
center = {
|
|
{
|
|
icon = ' ',
|
|
icon_hl = 'main',
|
|
desc = 'Find files',
|
|
desc_hl = 'main',
|
|
key = 'SPC f f',
|
|
key_hl = 'main',
|
|
action = 'Telescope find_files',
|
|
},
|
|
{
|
|
icon = ' ',
|
|
icon_hl = 'main',
|
|
desc = 'Select project',
|
|
desc_hl = 'main',
|
|
key = 'SPC f p',
|
|
key_hl = 'main',
|
|
action = 'Telescope project',
|
|
},
|
|
},
|
|
footer = {
|
|
"The one true text editor."
|
|
}
|
|
}
|
|
})
|