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.
20 lines
777 B
EmacsLisp
20 lines
777 B
EmacsLisp
;;; early-init.el --- My custom early-init.el
|
|
;; Author: Aryadev Chavali <aryadev@aryadevchavali.com
|
|
;; This file is NOT part of GNU Emacs.
|
|
;;; Code:
|
|
|
|
(setq gc-cons-threshold most-positive-fixnum
|
|
package-enable-at-startup nil
|
|
frame-inhibit-implied-resize nil
|
|
frame-resize-pixelwise t
|
|
native-comp-async-jobs-number 4
|
|
native-comp-eln-load-path (list (concat user-emacs-directory ".local/native-compile"))
|
|
native-comp-always-compile nil
|
|
native-comp-async-report-warnings-errors 'silent)
|
|
|
|
(push '(menu-bar-lines . 0) default-frame-alist)
|
|
(push '(tool-bar-lines . 0) default-frame-alist)
|
|
(push '(vertical-scroll-bars) default-frame-alist)
|
|
(push '(alpha . 90) default-frame-alist)
|
|
(advice-add #'x-apply-session-resources :override #'ignore)
|