| 123456789101112131415161718 |
- return {
- -- {
- -- "folke/drop.nvim",
- -- opts = {
- -- -- ...
- -- },
- -- },
- {
- "nvimdev/dashboard-nvim",
- event = "VimEnter",
- config = function()
- require("dashboard").setup({
- -- config
- })
- end,
- dependencies = { { "nvim-tree/nvim-web-devicons" } },
- },
- }
|