From 2daab3798542c45a645f25364302e115e4508d9b Mon Sep 17 00:00:00 2001 From: Random936 Date: Thu, 15 Feb 2024 18:50:58 -0800 Subject: [PATCH] More dashboard-mode config --- .emacs.d/config.org | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index bca53c8..681757e 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -405,7 +405,8 @@ The Emacs dashboard package provides a nice dashboard when first starting up ema (use-package dashboard :init - (setq initial-buffer-choice (lambda () (dashboard-open)) + (setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*")) + dashboard-startup-banner 'logo dashboard-icon-type 'all-the-icons dashboard-set-file-icons t dashboard-set-heading-icons t @@ -413,6 +414,8 @@ The Emacs dashboard package provides a nice dashboard when first starting up ema (recents . 5) (agenda . 5))) :config + (add-hook 'after-init-hook 'dashboard-refresh-buffer) + (add-hook 'server-after-make-frame-hook 'dashboard-refresh-buffer) (dashboard-setup-startup-hook)) #+end_src