dotfiles/nvim/lua/plugins/dashboard.lua

13 lines
227 B
Lua
Raw Normal View History

2024-03-02 17:25:11 +01:00
return {
{
'nvimdev/dashboard-nvim',
event = 'VimEnter',
config = function ()
require('dashboard').setup{
theme = "hyper"
}
end,
dependencies = {{'nvim-tree/nvim-web-devicons'}}
},
}