dashboard.lua 277 B

123456789101112131415161718
  1. return {
  2. -- {
  3. -- "folke/drop.nvim",
  4. -- opts = {
  5. -- -- ...
  6. -- },
  7. -- },
  8. {
  9. "nvimdev/dashboard-nvim",
  10. event = "VimEnter",
  11. config = function()
  12. require("dashboard").setup({
  13. -- config
  14. })
  15. end,
  16. dependencies = { { "nvim-tree/nvim-web-devicons" } },
  17. },
  18. }