Added dashboard lua and config file for it
This commit is contained in:
37
after/plugin/dashboard.lua
Normal file
37
after/plugin/dashboard.lua
Normal file
@@ -0,0 +1,37 @@
|
||||
local staus, db = pcall(require, "dashboard")
|
||||
if not staus then
|
||||
return
|
||||
end
|
||||
|
||||
db.setup({
|
||||
theme = "doom",
|
||||
config = {
|
||||
header = {
|
||||
[[ ]],
|
||||
[[ ================= =============== =============== ======== ======== ]],
|
||||
[[ \\ . . . . . . .\\ //. . . . . . .\\ //. . . . . . .\\ \\. . .\\// . . // ]],
|
||||
[[ ||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\/ . . .|| ]],
|
||||
[[ || . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . || ]],
|
||||
[[ ||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .|| ]],
|
||||
[[ || . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\ . . . . || ]],
|
||||
[[ ||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\_ . .|. .|| ]],
|
||||
[[ || . _|| || || || || ||_ . || || . _|| || || || |\ `-_/| . || ]],
|
||||
[[ ||_-' || .|/ || || \|. || `-_|| ||_-' || .|/ || || | \ / |-_.|| ]],
|
||||
[[ || ||_-' || || `-_|| || || ||_-' || || | \ / | `|| ]],
|
||||
[[ || `' || || `' || || `' || || | \ / | || ]],
|
||||
[[ || .===' `===. .==='.`===. .===' /==. | \/ | || ]],
|
||||
[[ || .==' \_|-_ `===. .===' _|_ `===. .===' _-|/ `== \/ | || ]],
|
||||
[[ || .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \/ | || ]],
|
||||
[[ || .==' _-' `-__\._-' `-_./__-' `' |. /| | || ]],
|
||||
[[ ||.==' _-' `' | /==.|| ]],
|
||||
[[ ==' _-' \/ `== ]],
|
||||
[[ \ _-' `-_ / ]],
|
||||
[[ `'' ``' ]],
|
||||
[[ ]],
|
||||
[[ [ TIP: To exit Neovim, just power off your computer. ] ]],
|
||||
},
|
||||
footer = {
|
||||
"The one true text editor."
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user