dotfiles/nvim/lua/plugins/dashboard.lua
2024-03-02 17:25:11 +01:00

12 lines
227 B
Lua

return {
{
'nvimdev/dashboard-nvim',
event = 'VimEnter',
config = function ()
require('dashboard').setup{
theme = "hyper"
}
end,
dependencies = {{'nvim-tree/nvim-web-devicons'}}
},
}