feat: Redirect custom file to cache dir

This commit is contained in:
Madeleine Sydney
2025-01-16 11:22:21 -07:00
parent 7d7c97fc7b
commit c61c939f6c
3 changed files with 21 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
;;; syd-custom.el -*- lexical-binding: t; -*-
;; To discourage use of the custom file, we store it somewhere will
;; Impermanence will wipe it.
(use-package emacs
;; TODO: I'd like to allow /some/ custom variables. E.g., the trusted
;; dir-locals files. See `hack-dir-local-variables'. It has some hooks that
;; should make this accomplishable.
:custom (custom-file (file-name-concat syd-data-dir "custom.el"))
:config
(when (file-readable-p custom-file)
(load custom-file)))
(provide 'syd-custom)