(Emacs/init)~gc-cons-threshold is set to max at start of bootup
This commit is contained in:
@@ -25,11 +25,10 @@
|
||||
;; Before doing anything else, make gc-cons-threshold ridiculously
|
||||
;; high. This makes it so we have as few pauses during init as
|
||||
;; possible.
|
||||
(setq gc-cons-threshold (* 1024 1024 1024)) ; ~1GiB
|
||||
|
||||
;; Straight
|
||||
(defvar bootstrap-version)
|
||||
(let ((bootstrap-file
|
||||
(let ((gc-cons-threshold most-positive-fixnum))
|
||||
;; Straight
|
||||
(defvar bootstrap-version)
|
||||
(let ((bootstrap-file
|
||||
(expand-file-name
|
||||
"straight/repos/straight.el/bootstrap.el"
|
||||
(or (bound-and-true-p straight-base-dir)
|
||||
@@ -44,7 +43,7 @@
|
||||
(eval-print-last-sexp)))
|
||||
(load bootstrap-file nil 'nomessage))
|
||||
|
||||
(setq straight-disable-native-compile nil
|
||||
(setq straight-disable-native-compile nil
|
||||
straight-use-package-by-default t
|
||||
use-package-enable-imenu-support t
|
||||
use-package-always-demand nil
|
||||
@@ -52,33 +51,33 @@
|
||||
use-package-hook-name-suffix nil
|
||||
use-package-compute-statistics t)
|
||||
|
||||
(straight-use-package 'use-package)
|
||||
(straight-use-package 'org)
|
||||
(straight-use-package 'no-littering)
|
||||
(straight-use-package 'use-package)
|
||||
(straight-use-package 'org)
|
||||
(straight-use-package 'no-littering)
|
||||
|
||||
(setq no-littering-etc-directory (expand-file-name ".config/" user-emacs-directory)
|
||||
(setq no-littering-etc-directory (expand-file-name ".config/" user-emacs-directory)
|
||||
no-littering-var-directory (expand-file-name ".local/" user-emacs-directory)
|
||||
custom-file (no-littering-expand-etc-file-name "custom.el"))
|
||||
|
||||
(load-file custom-file)
|
||||
(load-file custom-file)
|
||||
|
||||
;;; Load literate
|
||||
(load-file (concat user-emacs-directory "elisp/literate.el"))
|
||||
(load-file (concat user-emacs-directory "elisp/literate.el"))
|
||||
|
||||
;; Compile on Emacs quit
|
||||
(add-hook
|
||||
;; Compile on Emacs quit
|
||||
(add-hook
|
||||
'kill-emacs-hook
|
||||
#'+literate/compile-config)
|
||||
|
||||
(+literate/load-config)
|
||||
(+literate/load-config)
|
||||
|
||||
(when (daemonp)
|
||||
(when (daemonp)
|
||||
(require 'general)
|
||||
(require 'evil)
|
||||
(require 'notmuch)
|
||||
(require 'company)
|
||||
(require 'org)
|
||||
(require 'eglot))
|
||||
(require 'eglot)))
|
||||
|
||||
(setq gc-cons-threshold (* 100 1024 1024) ; ~100MiB
|
||||
read-process-output-max 5242880 ; ~5MiB
|
||||
|
||||
Reference in New Issue
Block a user