Don't raise an error if custom.el doesn't exist
This commit is contained in:
parent
3b59dca860
commit
701601ca86
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@
|
||||||
(add-to-list 'grep-files-aliases '("css" . "*.css *.less *.sass *.scss"))
|
(add-to-list 'grep-files-aliases '("css" . "*.css *.less *.sass *.scss"))
|
||||||
|
|
||||||
(setq custom-file (concat user-emacs-directory "custom.el"))
|
(setq custom-file (concat user-emacs-directory "custom.el"))
|
||||||
(load custom-file)
|
(load custom-file t)
|
||||||
|
|
||||||
(provide 'init)
|
(provide 'init)
|
||||||
;;; init.el ends here
|
;;; init.el ends here
|
||||||
|
|
Loading…
Reference in a new issue