blob: 1dc81d3457fb59344f3b6e9215b5dbd23c1e0e50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;; Elpa packages: dashboard
(use-package dashboard
:ensure t
:diminish dashboard-mode
:config
(setq dashboard-banner-logo-title "Only the educated are free.")
(setq dashboard-items '((recents . 10)
(projects . 5)
(bookmarks . 10)))
(dashboard-setup-startup-hook))
|