From 0f8af0630efb8adae0ee721d7e5c04773a674ec2 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Thu, 8 Dec 2022 00:31:43 -0800 Subject: [PATCH] Disable native compilation, which speeds up emacs for some reason --- early-init.el | 1 + init.el | 2 ++ 2 files changed, 3 insertions(+) diff --git a/early-init.el b/early-init.el index 512068a..7c9f281 100644 --- a/early-init.el +++ b/early-init.el @@ -1 +1,2 @@ +(setq native-comp-speed -1) (setq package-enable-at-startup nil) diff --git a/init.el b/init.el index 3170fa1..3018d76 100644 --- a/init.el +++ b/init.el @@ -66,6 +66,8 @@ (eval-print-last-sexp))) (load bootstrap-file nil 'nomessage)) +(setq straight-disable-native-compile t) + ;; Use-Package (straight-use-package 'use-package) (setq straight-use-package-by-default t)