27 lines
1,005 B
Lua
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' } }
|
|
}
|
|
}
|