emacs/custom/setup-dashboard.el
2018-04-05 11:35:37 +02:00

17 lines
352 B
EmacsLisp

(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)
))
;; Enable recent files
(recentf-mode 1)
(provide 'setup-dashboard)