aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2018-06-13 11:06:46 -0700
committerGravatar Tom Willemse2018-06-13 11:06:46 -0700
commit701601ca86d3bdbf8e9ea6effcd65c96db5897cc (patch)
tree4473aac17bd92c28b39cab48681666744125c1df /emacs
parent3b59dca86075c2c4ec5d285344d4ea724fa0dda3 (diff)
downloadnew-dotfiles-701601ca86d3bdbf8e9ea6effcd65c96db5897cc.tar.gz
new-dotfiles-701601ca86d3bdbf8e9ea6effcd65c96db5897cc.zip
Don't raise an error if custom.el doesn't exist
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 9936c87..059fa4b 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -396,7 +396,7 @@
(add-to-list 'grep-files-aliases '("css" . "*.css *.less *.sass *.scss"))
(setq custom-file (concat user-emacs-directory "custom.el"))
-(load custom-file)
+(load custom-file t)
(provide 'init)
;;; init.el ends here