Fixed dashboard emacsclient font issue

This commit is contained in:
Jaden Provost Maxwell-Comfort 2024-01-31 12:11:11 -08:00
parent 7577c839c5
commit edb16e3da6
2 changed files with 1 additions and 1 deletions

View File

@ -396,6 +396,7 @@ The Emacs dashboard package provides a nice dashboard when first starting up ema
(recents . 5) (recents . 5)
(agenda . 5))) (agenda . 5)))
:config :config
(set-face-attribute 'dashboard-items-face nil :font "Fira Code Retina" :height 140)
(dashboard-setup-startup-hook)) (dashboard-setup-startup-hook))
#+end_src #+end_src

View File

@ -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 () (defun jm/org-roam-refresh-agenda-list ()
(interactive) (interactive)
(setq org-agenda-files (org-roam-list-files))) (setq org-agenda-files (org-roam-list-files)))
#+end_src #+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. To use this function, I'll add it to some hooks to make sure to run it before the agenda list is needed.