diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-07 14:58:48 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-07 14:58:48 -0500 |
commit | 341c3be75228dbd23fd05208d148acecf950d573 (patch) | |
tree | ecac1a33408f61c9816c56f97a2b617ab425c68e /config/emacs/init.org |
initial commit
Diffstat (limited to 'config/emacs/init.org')
-rw-r--r-- | config/emacs/init.org | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/emacs/init.org b/config/emacs/init.org new file mode 100644 index 0000000..36131cf --- /dev/null +++ b/config/emacs/init.org @@ -0,0 +1,13 @@ +#+title: Emacs =init.el= + +Force the usage of a =custom.el= file for customizations. +#+begin_src emacs-lisp :tangle yes +(setq custom-file (concat user-emacs-directory "custom.el")) +(when (file-exists-p custom-file) + (load custom-file)) +#+end_src + +Load the main configuration from [[./config.org][config.org]]. +#+begin_src emacs-lisp :tangle yes +(org-babel-load-file "~/.config/emacs/config.org") +#+end_src |