add dashboard plugin
This commit is contained in:
parent
2304f200b7
commit
16a0632e8e
|
@ -0,0 +1,19 @@
|
|||
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' } },
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue