added dashboard

This commit is contained in:
Sakamoto
2024-07-14 18:39:18 -05:00
parent d2a8b257fa
commit af37decd58
2 changed files with 48 additions and 3 deletions
+47
View File
@@ -0,0 +1,47 @@
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)