diff --git a/config/nvim/lua/core/plugins.lua b/config/nvim/lua/core/plugins.lua index 9bc3e604..17258ef8 100644 --- a/config/nvim/lua/core/plugins.lua +++ b/config/nvim/lua/core/plugins.lua @@ -75,15 +75,18 @@ local plugins = { config = function() require('dashboard').setup { theme = 'doom', -- theme is doom and hyper default is hyper - { - icon = '', - icon_hl = 'group', - desc = 'description', - desc_hl = 'group', - key = 'shortcut key in dashboard buffer not keymap !!', - key_hl = 'group', - action = '', + center = { + { + icon = '', + icon_hl = 'group', + desc = 'description', + desc_hl = 'group', + key = 'shortcut key in dashboard buffer not keymap !!', + key_hl = 'group', + action = '', + }, }, + footer = {}, } end, event = 'VimEnter',