From 2b6790e7a8c4806488eb862e2eadce117f076b92 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Sun, 14 Mar 2021 23:49:08 -0500 Subject: [PATCH] Install `no-littering' To catch the packages I don't want to bother configuring. --- early-init.el | 8 ++++++++ 1 file changed, 8 insertions(+) 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 @@ gcs-done)) (add-hook 'emacs-startup-hook #'hook--message-startup-time) + +;;; Install `no-littering', pointing both directories at `acdw/dir'. This will +;;; take care of the packages I don't care about configuring. + +(straight-use-package 'no-littering) +(setq no-littering-etc-directory acdw/dir + no-littering-var-directory acdw/dir) +(require 'no-littering)