kickstart.nvim/lua/custom/plugins/dashboard.lua

19 lines
357 B
Lua

return {
'nvimdev/dashboard-nvim',
event = 'VimEnter',
theme = 'hyper',
config = function()
require('dashboard').setup {
-- config
--
}
end,
hide = {
statusline, -- hide statusline default is true
tabline, -- hide the tabline
winbar, -- hide winbar
},
dependencies = { { 'nvim-tree/nvim-web-devicons' } },
}