;;; init-dashboard.el --- dashboard -*- lexical-binding: t -*- ;;; Commentary: ;;; Code: (use-package dashboard :autoload dashboard-setup-startup-hook :hook after-init :config (setq dashboard-banner-logo-title (format "%s" emacs-version) dashboard-banner-ascii " ##### # # # # ####### # # # ##### ##### \n# # ## # # # # ## ## # # # # # # \n# # # # # # # # # # # # # # # \n# #### # # # # # ##### # # # # # # ##### \n# # # # # # # # # # ####### # # \n# # # ## # # # # # # # # # # # \n ##### # # ##### ####### # # # # ##### ##### " dashboard-startup-banner 'ascii dashboard-footer-messages '("hello") dashboard-center-content t dashboard-navigation-cycle t dashboard-items '((recents . 8) (bookmarks . 5) (projects . 5)) dashboard-item-shortcuts '((recents . "r") (bookmarks . "b") (projects . "p") (agenda . "a") (registers . "e"))) (dashboard-setup-startup-hook)) (provide 'init-dashboard) ;;; init-dashboard.el ends here