From 61900e652a66f0843aa32331f4292c19063f5560 Mon Sep 17 00:00:00 2001 From: Random936 Date: Tue, 26 Dec 2023 18:32:38 -0800 Subject: [PATCH] Added icons to emacs dashboard --- .emacs.d/config.org | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 34b7658..893dfcb 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -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