diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-14T17·15+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-14T17·15+0000 |
commit | f69dfbc40e0e8f3f1babfbed38cbbfb1eeb99057 (patch) | |
tree | e74f449f9c8a1dfc8dc1d0f601354d145575d952 /tools/emacs | |
parent | c8bf0f90085e058d167596a8ac4ff57cb4293066 (diff) |
fix(emacs.d): Fix loading of custom.el r/150
Diffstat (limited to 'tools/emacs')
-rw-r--r-- | tools/emacs/config/init.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el index d50e4baa2ae4..a27a17c6ddc0 100644 --- a/tools/emacs/config/init.el +++ b/tools/emacs/config/init.el @@ -134,9 +134,8 @@ ;; The way this will work for now is that Emacs will *write* ;; configuration to the file tracked in my repository, while not ;; actually *reading* it from there (unless Emacs is rebuilt). -(setq custom-file - (expand-file-name "~/projects/tazjin/tools/emacs/config/custom.el")) -(require 'custom) +(setq custom-file (expand-file-name "~/depot/tools/emacs/config/custom.el")) +(load-library "custom") (defvar home-dir (expand-file-name "~")) |