From 2430eff22c785bf3dd400dd55e80832d5f050bb6 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Thu, 10 Aug 2023 19:34:26 +0300 Subject: [PATCH] we --- config/nvim/lua/core/plugins.lua | 33 +++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/config/nvim/lua/core/plugins.lua b/config/nvim/lua/core/plugins.lua index 17258ef8..a70c3727 100644 --- a/config/nvim/lua/core/plugins.lua +++ b/config/nvim/lua/core/plugins.lua @@ -75,18 +75,29 @@ local plugins = { config = function() require('dashboard').setup { theme = 'doom', -- theme is doom and hyper default is hyper - center = { - { - icon = '', - icon_hl = 'group', - desc = 'description', - desc_hl = 'group', - key = 'shortcut key in dashboard buffer not keymap !!', - key_hl = 'group', - action = '', + 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 = {}, + footer = {} --your footer + } } end, event = 'VimEnter',