diff options
author | Case Duckworth | 2021-10-09 09:18:35 -0500 |
---|---|---|
committer | Case Duckworth | 2021-10-09 09:18:35 -0500 |
commit | 57b61b9686ededf17a7839f51fe6cc1a18448112 (patch) | |
tree | f199f6a2a8ae1c1d4b33c3bffbb8543596742b15 | |
parent | Add `circe-current-topic' and make topsy.el use it (diff) | |
download | emacs-57b61b9686ededf17a7839f51fe6cc1a18448112.tar.gz emacs-57b61b9686ededf17a7839f51fe6cc1a18448112.zip |
Move private.el loading into early-init.el
-rw-r--r-- | early-init.el | 3 | ||||
-rw-r--r-- | init.el | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index b820144..5f77c82 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -181,4 +181,7 @@ say, `tool-bar-mode' once to toggle the tool bar back on." | |||
181 | 181 | ||
182 | (setup (:straight el-patch)) | 182 | (setup (:straight el-patch)) |
183 | 183 | ||
184 | ;; My private variables and stuff | ||
185 | (require 'acdw-private (acdw/sync-dir "private.el") :noerror) | ||
186 | |||
184 | ;;; early-init.el ends here | 187 | ;;; early-init.el ends here |
diff --git a/init.el b/init.el index c68ea1e..0866b9c 100644 --- a/init.el +++ b/init.el | |||
@@ -87,7 +87,6 @@ | |||
87 | (:also-load acdw-compat | 87 | (:also-load acdw-compat |
88 | acdw-lisp | 88 | acdw-lisp |
89 | acdw-reading) | 89 | acdw-reading) |
90 | (require 'acdw-private (acdw/sync-dir "private.el") :noerror) | ||
91 | 90 | ||
92 | (:option user-full-name "Case Duckworth" | 91 | (:option user-full-name "Case Duckworth" |
93 | user-mail-address (rot13-string "npqj@npqj.arg")) | 92 | user-mail-address (rot13-string "npqj@npqj.arg")) |