Setup dashboard

This commit is contained in:
laurensmiers 2018-04-02 15:33:33 +02:00
parent a1f0476b17
commit 3761f0b06a
3 changed files with 19 additions and 5 deletions

15
custom/setup-dashboard.el Normal file
View file

@ -0,0 +1,15 @@
(require 'dashboard)
(dashboard-setup-startup-hook)
;; Set the startup message
(setq dashboard-banner-logo-title "")
;; Set the banner
(setq dashboard-startup-banner 'logo)
(setq dashboard-items '((recents . 10)
(bookmarks . 5)
))
(provide 'setup-dashboard)