diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-03-03 22:12:23 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-03-03 22:12:23 -0500 |
commit | 7f94ef5c1d2575d76279f325588439cf92cd56a4 (patch) | |
tree | 9309ccead5371d4413e2ca064015dfff8cbb0fcf /lisp | |
parent | 471008e784f04193c3576f4fa4575ba2d6a8d64c (diff) | |
download | emacs.d-7f94ef5c1d2575d76279f325588439cf92cd56a4.tar.gz |
Don't load customization file
I don't use this. I'm not setting custom-file to nil because I don't
want customization to be dropped in init.el.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-general.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-general.el b/lisp/init-general.el index c8e6f55..561b53d 100644 --- a/lisp/init-general.el +++ b/lisp/init-general.el @@ -11,8 +11,8 @@ (setq set-mark-command-repeat-pop t) -(setq custom-file "~/.emacs.d/custom.el") -(load custom-file) +;; This is intentionally not loaded. +(setq custom-file "~/.emacs.d/.custom.el") (setq save-abbrevs 'silently) |