Fixed issue with dashboard not working with emacsclient

This commit is contained in:
Random936 2023-12-24 15:21:33 -08:00
parent f4931fe6ca
commit cb876271e7

View File

@ -200,7 +200,11 @@ The Emacs dashboard package provides a nice dashboard when first starting up ema
#+begin_src emacs-lisp
(use-package dashboard
:config (dashboard-setup-startup-hook))
:config
(setq initial-buffer-choice (lambda ()
(get-buffer-create "*dashboard*")
(dashboard-refresh-buffer)))
(dashboard-setup-startup-hook))
#+end_src
* Cosmetic