early-init.el 301 B

12345678910
  1. ;;; early-init.el --- Things that need to run before init.el -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;; Code:
  4. ;; Move native compile cache to follow no-littering conventions
  5. (when (fboundp 'startup-redirect-eln-cache)
  6. (startup-redirect-eln-cache "var/eln-cache/"))
  7. ;;; early-init.el ends here