nvim-config/lua/custom/plugins/dashboard.lua
2024-11-05 12:24:19 -06:00

19 lines
464 B
Lua

return {
{
'nvimdev/dashboard-nvim',
event = 'VimEnter',
config = function()
require('dashboard').setup {
theme = 'hyper',
config = {
week_header = { enable = true },
footer = {},
shortcut = {
{ desc = '󰊳 Update Lazy', group = '@property', action = 'Lazy update', key = 'u' },
},
},
}
end,
dependencies = { { 'nvim-tree/nvim-web-devicons' } },
},
}