summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-14 23:49:08 -0500
committerCase Duckworth2021-03-14 23:49:08 -0500
commit2b6790e7a8c4806488eb862e2eadce117f076b92 (patch)
treeb9fe81c4451802dbcbee2424d0529596e23ad7cd /early-init.el
parentFurther configure the mode line (diff)
downloademacs-2b6790e7a8c4806488eb862e2eadce117f076b92.tar.gz
emacs-2b6790e7a8c4806488eb862e2eadce117f076b92.zip
Install `no-littering'
To catch the packages I don't want to bother configuring.
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el8
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)