init-dashboard.el (1259B)
1 ;;; init-dashboard.el --- dashboard -*- lexical-binding: t -*- 2 3 ;;; Commentary: 4 5 ;;; Code: 6 7 (use-package dashboard 8 :autoload dashboard-setup-startup-hook 9 :hook after-init 10 :config 11 (setq dashboard-banner-logo-title (format "%s" emacs-version) 12 dashboard-banner-ascii " ##### # # # # ####### # # # ##### ##### \n# # ## # # # # ## ## # # # # # # \n# # # # # # # # # # # # # # # \n# #### # # # # # ##### # # # # # # ##### \n# # # # # # # # # # ####### # # \n# # # ## # # # # # # # # # # # \n ##### # # ##### ####### # # # # ##### ##### " 13 dashboard-startup-banner 'ascii 14 dashboard-footer-messages '("hello") 15 dashboard-center-content t 16 dashboard-navigation-cycle t 17 dashboard-items '((recents . 8) 18 (bookmarks . 5) 19 (projects . 5)) 20 dashboard-item-shortcuts '((recents . "r") (bookmarks . "b") (projects . "p") (agenda . "a") (registers . "e"))) 21 (dashboard-setup-startup-hook)) 22 23 (provide 'init-dashboard) 24 ;;; init-dashboard.el ends here