configfiles/nvim/.config/nvim/lua/plugin/dashboard.lua
2023-04-07 16:27:11 +02:00

27 lines
1,005 B
Lua

return {
{
'glepnir/dashboard-nvim',
event = 'VimEnter',
config = function()
require('dashboard').setup {
theme = 'hyper',
config = {
week_header = {
enable = true,
},
shortcut = {
{ icon = '󰚰 ', desc = 'Update', group = '@property', action = 'Lazy update', key =
'U' },
{ icon = '', desc = 'Files', group = '@property', action = 'Telescope find_files',
key =
'ff' },
},
footer = { '',
' Now better then ever ',
},
},
}
end,
dependencies = { { 'nvim-tree/nvim-web-devicons' } }
}
}