From 0c864324f4f52238cd13e766fe74d46c50dd597d Mon Sep 17 00:00:00 2001 From: Random936 Date: Tue, 26 Dec 2023 18:12:01 -0800 Subject: [PATCH] Updated dashboard items --- .emacs.d/config.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 2dc2d5e..34b7658 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -399,8 +399,10 @@ 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*"))) + (setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*")) + dashboard-items '((recents . 5) + (projects . 5) + (agenda . 5))) (dashboard-setup-startup-hook)) #+end_src