16 lines
590 B
EmacsLisp
16 lines
590 B
EmacsLisp
;; An extensible Emacs dashboard.
|
|
;; https://github.com/emacs-dashboard/emacs-dashboard
|
|
(use-package dashboard
|
|
:ensure t
|
|
:config
|
|
(setq dashboard-center-content t)
|
|
(setq dashboard-vertically-center-content t)
|
|
(setq dashboard-navigation-cycle t)
|
|
(setq dashboard-display-icons-p t)
|
|
(setq dashboard-icon-type 'nerd-icons)
|
|
(setq dashboard-set-heading-icons t)
|
|
(setq dashboard-set-file-icons t)
|
|
(setq dashboard-items '((projects . 5)
|
|
(recents . 5)))
|
|
(dashboard-setup-startup-hook))
|