mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-08-20 13:29:10 +00:00
examples: emacs: Check existence of font configuration before loading.
* modules/rosenthal/examples/emacs/init.el: Check existence of font configuration before loading.
This commit is contained in:
parent
ead325de92
commit
396f263ff6
@ -8,7 +8,9 @@
|
|||||||
(make-empty-file custom-file)
|
(make-empty-file custom-file)
|
||||||
(load custom-file))
|
(load custom-file))
|
||||||
|
|
||||||
(load-file "$$fonts.el$$")
|
(let ((font-config "$$fonts.el$$"))
|
||||||
|
(when (file-exists-p font-config)
|
||||||
|
(load-file font-config)))
|
||||||
|
|
||||||
;; Tweak garbage collection strategy.
|
;; Tweak garbage collection strategy.
|
||||||
;;guix:emacs-gcmh
|
;;guix:emacs-gcmh
|
||||||
|
Loading…
Reference in New Issue
Block a user