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