You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/dashboard.lua

30 lines
548 B
Lua

return {
'glepnir/dashboard-nvim',
event = 'VimEnter',
theme = 'doom',
config = {
header = {}, --your header
center = {
{
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 = {} --your footer
},
dependencies = { { 'nvim-tree/nvim-web-devicons' } }
}