summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlake Romero <blake@developercraft.com>2025-10-12 18:10:32 +0100
committerBlake Romero <blake@developercraft.com>2025-10-12 18:10:32 +0100
commit895f202d2ac59dd7693ff03ccfcf7bca81e7d82d (patch)
tree4d7ac36118512c4aefaa81d865d7ed95772610e3
parent98cf12ec88cfbf49f3dc88e596919656f6d97097 (diff)
Add custom file
-rw-r--r--emacs-config.org10
1 files changed, 9 insertions, 1 deletions
diff --git a/emacs-config.org b/emacs-config.org
index 62b7da8..f5418e7 100644
--- a/emacs-config.org
+++ b/emacs-config.org
@@ -42,7 +42,15 @@ Quality of life settings.
cursor-in-non-selected-windows nil)
#+end_src
-** Startup Screen
+Set a custom file for customisation.
+#+begin_src elisp
+ (setq-default
+ custom-file (expand-file-name "custom.el" user-emacs-directory))
+ (when (file-exists-p custom-file)
+ (load custom-file))
+#+end_src
+
+** Startup
Disable default startup screen.
#+begin_src elisp
(setq-default inhibit-startup-screen t)