diff options
Diffstat (limited to '.emacs.local.d/modes/dashboard.el')
-rw-r--r-- | .emacs.local.d/modes/dashboard.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.emacs.local.d/modes/dashboard.el b/.emacs.local.d/modes/dashboard.el new file mode 100644 index 0000000..1dc81d3 --- /dev/null +++ b/.emacs.local.d/modes/dashboard.el @@ -0,0 +1,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)) |