This commit is contained in:
Sakooooo 2023-08-10 19:34:26 +03:00
parent c649488fa4
commit 2430eff22c
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -75,18 +75,29 @@ local plugins = {
config = function()
require('dashboard').setup {
theme = 'doom', -- theme is doom and hyper default is hyper
config = {
header = {}, --your header
center = {
{
icon = '',
icon_hl = 'group',
desc = 'description',
desc_hl = 'group',
key = 'shortcut key in dashboard buffer not keymap !!',
key_hl = 'group',
action = '',
icon = '',
icon_hl = 'Title',
desc = 'Find File ',
desc_hl = 'String',
key = 'b',
keymap = 'SPC f f',
key_hl = 'Number',
action = 'lua print(2)'
},
{
icon = '',
desc = 'Find Dotfiles',
key = 'f',
keymap = 'SPC f d',
action = 'lua print(3)'
},
},
footer = {},
footer = {} --your footer
}
}
end,
event = 'VimEnter',