48 lines
1.5 KiB
Lua
48 lines
1.5 KiB
Lua
local header = {
|
|
[[]],
|
|
[[]],
|
|
[[]],
|
|
[[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]],
|
|
[[ ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║]],
|
|
[[ ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║]],
|
|
[[ ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]],
|
|
[[ ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║]],
|
|
[[ ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝]],
|
|
[[]],
|
|
[[]],
|
|
[[]],
|
|
}
|
|
|
|
local footer = {
|
|
[[]],
|
|
[[]],
|
|
'Don\'t know how to exit? Refer to the link below.',
|
|
'https://stackoverflow.com/questions/11828270/how-do-i-exit-vim',
|
|
}
|
|
|
|
local options = {
|
|
theme = 'hyper',
|
|
disable_move = false,
|
|
shortcut_type = 'letter',
|
|
shuffle_letter = true,
|
|
change_to_vcs_root = false,
|
|
config = {
|
|
header = header,
|
|
shortcut = {
|
|
{
|
|
desc = "😎 Skill Issue.",
|
|
},
|
|
},
|
|
footer = footer,
|
|
},
|
|
hide = {
|
|
statusline = true,
|
|
tabline = true,
|
|
winbar = true,
|
|
},
|
|
preview = {
|
|
|
|
},
|
|
}
|
|
require("dashboard").setup(options)
|