10 lines
348 B
EmacsLisp
10 lines
348 B
EmacsLisp
;;; early-init.el --- Things that need to run before init.el -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
|
|
;; Move native compile cache to follor no-littering conventions
|
|
(when (fboundp 'startup-redirect-eln-cache)
|
|
(startup-redirect-eln-cache
|
|
(convert-standard-filename
|
|
(expand-file-name "var/eln-cache/" user-emacs-directory))))
|