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 | |
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.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | custom.el | 12 | ||||
-rw-r--r-- | lisp/init-general.el | 4 |
3 files changed, 3 insertions, 14 deletions
@@ -13,3 +13,4 @@ bookmarks /.python-environments /ac-comphist.dat /.cask +/.custom.el diff --git a/custom.el b/custom.el deleted file mode 100644 index 44457d5..0000000 --- a/custom.el +++ /dev/null @@ -1,12 +0,0 @@ -(custom-set-variables - ;; custom-set-variables was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - ) -(custom-set-faces - ;; custom-set-faces was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. -) 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) |