about summary refs log blame commit diff stats
path: root/.emacs.d/lisp/init-dashboard.el
blob: 30285a5b77d8806f9e6f9e8c45d36da515cac215 (plain) (tree)





















                                                                                 
;;; init-dashboard.el --- Dashboard Configuration File -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:

(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)
;;; init-dashboard.el ends here