we
This commit is contained in:
parent
c649488fa4
commit
2430eff22c
1 changed files with 22 additions and 11 deletions
|
@ -75,18 +75,29 @@ local plugins = {
|
||||||
config = function()
|
config = function()
|
||||||
require('dashboard').setup {
|
require('dashboard').setup {
|
||||||
theme = 'doom', -- theme is doom and hyper default is hyper
|
theme = 'doom', -- theme is doom and hyper default is hyper
|
||||||
center = {
|
config = {
|
||||||
{
|
header = {}, --your header
|
||||||
icon = '',
|
center = {
|
||||||
icon_hl = 'group',
|
{
|
||||||
desc = 'description',
|
icon = ' ',
|
||||||
desc_hl = 'group',
|
icon_hl = 'Title',
|
||||||
key = 'shortcut key in dashboard buffer not keymap !!',
|
desc = 'Find File ',
|
||||||
key_hl = 'group',
|
desc_hl = 'String',
|
||||||
action = '',
|
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 = {} --your footer
|
||||||
footer = {},
|
}
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
event = 'VimEnter',
|
event = 'VimEnter',
|
||||||
|
|
Loading…
Reference in a new issue