diff options
| -rw-r--r-- | emacs-config.org | 10 |
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) |
