diff options
author | Vincent Ambo <mail@tazj.in> | 2023-07-14T15·21+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-07-14T15·28+0000 |
commit | 6ecc7a2ee47c8e860140cef3f8d8e37d9ecabcf3 (patch) | |
tree | 477793e3d922ac31767e8844a2660c915e119b0f /users/tazjin | |
parent | fec80fe720a89fe47d4de3811fbca4d57820286a (diff) |
fix(tazjin/emacs): fix path to my custom.el r/6428
Change-Id: If2a3f741a7b05358b6d09ea7c60d4a2fa3cf5263 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8968 Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/emacs/config/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/tazjin/emacs/config/init.el b/users/tazjin/emacs/config/init.el index 3f772ff37150..8383f8ac33bf 100644 --- a/users/tazjin/emacs/config/init.el +++ b/users/tazjin/emacs/config/init.el @@ -277,7 +277,7 @@ ;; 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 "~/depot/tools/emacs/config/custom.el")) +(setq custom-file (f-join depot-path "users" "tazjin" "emacs" "config" "custom.el")) (load-library "custom") (defvar home-dir (expand-file-name "~")) |