about summary refs log tree commit diff stats
path: root/emacs-prelude/personal/lisp/init-dashboard.el
blob: 538bc4c49fb7d648bf7feac13daa029f81000598 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(prelude-require-package 'dashboard)
(use-package dashboard
  :init
  (setq dashboard-center-content t
        dashboard-startup-banner 'logo
        dashboard-set-footer nil
        dashboard-week-agenda t
        dashboard-projects-backend 'projectile
        dashboard-projects-switch-function 'projectile-persp-switch-project
        dashboard-items '((recents  . 15)
                        (bookmarks . 5)
                        (projects . 5)
                        (agenda . 5)
                        (registers . 5)))
  :config
  (dashboard-setup-startup-hook))

(provide 'init-dashboard)