diff options
-rw-r--r-- | early-init.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el index 300b90d..5ef77f7 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -160,3 +160,11 @@ | |||
160 | gcs-done)) | 160 | gcs-done)) |
161 | 161 | ||
162 | (add-hook 'emacs-startup-hook #'hook--message-startup-time) | 162 | (add-hook 'emacs-startup-hook #'hook--message-startup-time) |
163 | |||
164 | ;;; Install `no-littering', pointing both directories at `acdw/dir'. This will | ||
165 | ;;; take care of the packages I don't care about configuring. | ||
166 | |||
167 | (straight-use-package 'no-littering) | ||
168 | (setq no-littering-etc-directory acdw/dir | ||
169 | no-littering-var-directory acdw/dir) | ||
170 | (require 'no-littering) | ||