From 13456d2a36fe5b6191c80db51f0c00bc6e89bb55 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sun, 7 Mar 2021 15:35:12 -0500 Subject: [PATCH] Cleanup --- hosts/gamingpc.org | 7 ++----- modules/interface.org | 7 ++++--- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/hosts/gamingpc.org b/hosts/gamingpc.org index eb5e894..d0e047a 100644 --- a/hosts/gamingpc.org +++ b/hosts/gamingpc.org @@ -12,15 +12,12 @@ * Options -+ Load the ~wombat~ theme ++ Disable the [[file:~/.emacs.d/modules/email.org][Email]] module #+begin_src emacs-lisp -(load-theme 'wombat t t) +(delete 'email dotfiles/modules) #+end_src -#+RESULTS: -: t - * Resources [fn:1] WSL/WSL2 diff --git a/modules/interface.org b/modules/interface.org index 9c73166..41ca74d 100644 --- a/modules/interface.org +++ b/modules/interface.org @@ -291,9 +291,10 @@ Present a *Dashboard* when first launching Emacs. Customize the buttons of the n When running in *daemon* mode, ensure that the dashboard is the initial buffer. #+begin_src emacs-lisp -(setq initial-buffer-choice - (lambda () - (get-buffer "*dashboard*"))) +(with-eval-after-load 'dashboard + (setq initial-buffer-choice + (lambda () + (get-buffer "*dashboard*")))) #+end_src Quickly navigate to the dashboard with =SPC SPC=.