diff options
Diffstat (limited to 'config.org')
| -rw-r--r-- | config.org | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -86,7 +86,8 @@ I don't want this autogenerated code to be added to main config file automatical placed in its own file and won't annoy me. #+BEGIN_SRC emacs-lisp (setq custom-file (expand-file-name "custom.el" user-emacs-directory)) - (load custom-file) + (when (file-exists-p custom-file) + (load custom-file)) #+END_SRC * Package management |