diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-09-14 00:14:06 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-09-14 00:47:16 +0100 |
commit | 81d25daf6192709504867509f2004106e27c6c95 (patch) | |
tree | 1242ff7f83b23df333b6b15428de92361dffcd4b /Emacs/.config/emacs/init.el | |
parent | df8c3846306c8907ece8037f9ac2fcd318c1b60f (diff) | |
download | dotfiles-81d25daf6192709504867509f2004106e27c6c95.tar.gz dotfiles-81d25daf6192709504867509f2004106e27c6c95.tar.bz2 dotfiles-81d25daf6192709504867509f2004106e27c6c95.zip |
(Emacs)+early-init native-compilation options
Set to 4 workers at the start to make compilation at least as fast as
possible: my laptop has 4 cores so it'll just slow it down until early
compilation is done, while my desktop can still keep going as it has 8
threads. In config.org this is setup correctly so the rest of the
config (which is the much larger part) uses a system dependent number
of cores.
Diffstat (limited to 'Emacs/.config/emacs/init.el')
-rw-r--r-- | Emacs/.config/emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/init.el b/Emacs/.config/emacs/init.el index d4d376d..f84cb6a 100644 --- a/Emacs/.config/emacs/init.el +++ b/Emacs/.config/emacs/init.el @@ -35,8 +35,8 @@ (eval-print-last-sexp))) (load bootstrap-file nil 'nomessage)) + (setq straight-disable-native-compile nil - straight-disable-native-compilation nil straight-use-package-by-default t use-package-enable-imenu-support t use-package-always-demand nil |