11 lines
190 B
Lua
11 lines
190 B
Lua
|
return {
|
||
|
"nvimdev/dashboard-nvim",
|
||
|
event = "VimEnter",
|
||
|
config = function()
|
||
|
require("dashboard").setup({
|
||
|
-- config
|
||
|
})
|
||
|
end,
|
||
|
dependencies = { { "nvim-tree/nvim-web-devicons" } },
|
||
|
}
|