init-dashboard.el 769 B

123456789101112131415161718192021222324252627
  1. ;;; init-dashboard.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. (use-package dashboard
  6. :pin "MELPA"
  7. :ensure t
  8. :config
  9. (dashboard-setup-startup-hook)
  10. (setq dashboard-banner-logo-title "Emacs personal")
  11. (setq dashboard-startup-banner 'logo)
  12. (setq dashboard-center-content t)
  13. (setq dashboard-show-shortcuts t)
  14. (setq dashboard-set-heading-icons t)
  15. (setq dashboard-set-file-icons t)
  16. (setq dashboard-set-footer nil)
  17. (setq show-week-agenda-p t)
  18. (setq dashboard-items '((recents . 5)
  19. (bookmarks . 5)
  20. (projects . 5)
  21. (agenda . 5)
  22. (registers . 5))))
  23. (provide 'init-dashboard)
  24. ;;; init-dashboard.el ends here