Added icons to emacs dashboard

This commit is contained in:
Random936 2023-12-26 18:32:38 -08:00
parent 9976488e43
commit 61900e652a

View File

@ -398,11 +398,14 @@ The Emacs dashboard package provides a nice dashboard when first starting up ema
#+begin_src emacs-lisp
(use-package dashboard
:config
(setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))
dashboard-items '((recents . 5)
(projects . 5)
:init
(setq dashboard-set-file-icons t
dashboard-set-heading-icons t
initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))
dashboard-items '((projects . 5)
(recents . 5)
(agenda . 5)))
:config
(dashboard-setup-startup-hook))
#+end_src