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 #+begin_src emacs-lisp
(use-package dashboard (use-package dashboard
:config :init
(setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*")) (setq dashboard-set-file-icons t
dashboard-items '((recents . 5) dashboard-set-heading-icons t
(projects . 5) initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))
dashboard-items '((projects . 5)
(recents . 5)
(agenda . 5))) (agenda . 5)))
:config
(dashboard-setup-startup-hook)) (dashboard-setup-startup-hook))
#+end_src #+end_src