From 51f81c20db08a6505de9fa8a96fc1dc225d24c69 Mon Sep 17 00:00:00 2001 From: Random936 Date: Tue, 26 Dec 2023 18:06:25 -0800 Subject: [PATCH] Small modification to the dashboard emacsclient fix --- .emacs.d/config.org | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index dadb342..2dc2d5e 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -399,9 +399,8 @@ 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-refresh-buffer))) + (setq initial-buffer-choice + (lambda () (get-buffer-create "*dashboard*"))) (dashboard-setup-startup-hook)) #+end_src