Only load custom file if it exists

This commit is contained in:
Laurens Miers 2024-09-22 11:48:43 +02:00
parent 012e960510
commit 6e52096e2d

View file

@ -11,5 +11,6 @@
(when (file-readable-p my-config-file)
(org-babel-load-file (expand-file-name my-config-file)))
(load custom-file)
(when (file-readable-p custom-file)
(load custom-file))
)