Set comp-deferred-compilation in early-init.el

Seems it's necessary for some and not others.

The emacs experience(TM).
This commit is contained in:
Henrik Lissner 2020-10-06 14:38:32 -04:00
parent 6445fbf732
commit b245abfe72
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -26,3 +26,8 @@
;; in this file and can conflict with later config (particularly where the ;; in this file and can conflict with later config (particularly where the
;; cursor color is concerned). ;; cursor color is concerned).
(advice-add #'x-apply-session-resources :override #'ignore) (advice-add #'x-apply-session-resources :override #'ignore)
;; Prevent unwanted runtime builds in gccemacs (native-comp); packages are
;; compiled ahead-of-time when they are installed and site files are compiled
;; when gccemacs is installed.
(setq comp-deferred-compilation nil)