Small modification to the dashboard emacsclient fix

This commit is contained in:
Random936 2023-12-26 18:06:25 -08:00
parent 05a98b310f
commit 51f81c20db

View File

@ -399,9 +399,8 @@ 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 :config
(setq initial-buffer-choice (lambda () (setq initial-buffer-choice
(get-buffer-create "*dashboard*") (lambda () (get-buffer-create "*dashboard*")))
(dashboard-refresh-buffer)))
(dashboard-setup-startup-hook)) (dashboard-setup-startup-hook))
#+end_src #+end_src