Don't raise an error if custom.el doesn't exist

This commit is contained in:
Tom Willemse 2018-06-13 11:06:46 -07:00
parent 3b59dca860
commit 701601ca86

View file

@ -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