feat(emacs): redirect eln-cache

This commit is contained in:
2025-09-22 11:20:33 -06:00
parent 0f3b7bd053
commit 25d1d911e1
2 changed files with 10 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
(add-to-list 'load-path (add-to-list 'load-path
(file-name-concat user-emacs-directory "lisp")) (file-name-concat user-emacs-directory "lisp"))
(require 'syd/redirect-eln-cache)
;; Load `syd/random-require' before the UI exists so `syd-init-load-order-seed' ;; Load `syd/random-require' before the UI exists so `syd-init-load-order-seed'
;; is printed to the console instead of the message buffer. ;; is printed to the console instead of the message buffer.

View File

@@ -0,0 +1,9 @@
;;; -*- lexical-binding: t -*-
(require 'syd/constants)
;; Prevent byteslop from slopping up my dotfiles.
(startup-redirect-eln-cache
(file-name-concat syd-cache-dir "eln-cache"))
(provide 'syd/redirect-eln-cache)