From 895f202d2ac59dd7693ff03ccfcf7bca81e7d82d Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Sun, 12 Oct 2025 18:10:32 +0100 Subject: Add custom file --- emacs-config.org | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'emacs-config.org') 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) -- cgit