From 7744d1938b1f273ec79939daa38f245d81477741 Mon Sep 17 00:00:00 2001 From: Random936 Date: Mon, 26 Feb 2024 08:37:16 -0800 Subject: [PATCH] Fixed issue with dashboard interfering with magit --- .emacs.d/config.org | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 681757e..3758cd4 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -400,9 +400,6 @@ When installing Vertico, the documentation mentions a few other packages that ad The Emacs dashboard package provides a nice dashboard when first starting up emacs. #+begin_src emacs-lisp - -;; Fix for when emacs is run as a daemon - (use-package dashboard :init (setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*")) @@ -415,7 +412,6 @@ The Emacs dashboard package provides a nice dashboard when first starting up ema (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