From edb16e3da67695a67ecf39c859699eeaf4a858e8 Mon Sep 17 00:00:00 2001 From: Jaden Provost Maxwell-Comfort Date: Wed, 31 Jan 2024 12:11:11 -0800 Subject: [PATCH] Fixed dashboard emacsclient font issue --- .emacs.d/config.org | 1 + .emacs.d/org.org | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 34de5d7..753b0ad 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -396,6 +396,7 @@ The Emacs dashboard package provides a nice dashboard when first starting up ema (recents . 5) (agenda . 5))) :config + (set-face-attribute 'dashboard-items-face nil :font "Fira Code Retina" :height 140) (dashboard-setup-startup-hook)) #+end_src diff --git a/.emacs.d/org.org b/.emacs.d/org.org index 7b1d50d..c32e7d1 100644 --- a/.emacs.d/org.org +++ b/.emacs.d/org.org @@ -144,7 +144,6 @@ Creates a function to refresh the ~org-agenda-files~ variable to be set to inclu (defun jm/org-roam-refresh-agenda-list () (interactive) (setq org-agenda-files (org-roam-list-files))) - #+end_src To use this function, I'll add it to some hooks to make sure to run it before the agenda list is needed.