Only load custom-file if it exists
This commit is contained in:
parent
03a3af709b
commit
ba3827f6d4
1 changed files with 2 additions and 1 deletions
|
@ -343,4 +343,5 @@
|
||||||
|
|
||||||
;; Custom file
|
;; Custom file
|
||||||
(setq custom-file "~/.emacs.d/custom.el")
|
(setq custom-file "~/.emacs.d/custom.el")
|
||||||
(load custom-file)
|
(if (file-exists-p custom-file)
|
||||||
|
(load custom-file))
|
||||||
|
|
Loading…
Reference in a new issue