diff options
author | Case Duckworth | 2021-03-14 23:49:08 -0500 |
---|---|---|
committer | Case Duckworth | 2021-03-14 23:49:08 -0500 |
commit | 2b6790e7a8c4806488eb862e2eadce117f076b92 (patch) | |
tree | b9fe81c4451802dbcbee2424d0529596e23ad7cd | |
parent | Further configure the mode line (diff) | |
download | emacs-2b6790e7a8c4806488eb862e2eadce117f076b92.tar.gz emacs-2b6790e7a8c4806488eb862e2eadce117f076b92.zip |
Install `no-littering'
To catch the packages I don't want to bother configuring.
-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) | ||