Store customize settings in a separate file

This commit is contained in:
Tom Willemse 2016-07-25 22:16:54 +02:00
parent b80cd3cd4d
commit ce2bede130

View file

@ -224,5 +224,13 @@ This is currently the data directory under the
(ensure-package magit)
;;;; Custom:
;; Put the customize settings in a different file so that Emacs
;; doesn't have to modify this file whenever something changes through
;; customize.
(setq custom-file (concat user-emacs-directory "custom.el"))
(load custom-file)
(provide 'init)
;;; init.el ends here