9 lines
238 B
EmacsLisp
9 lines
238 B
EmacsLisp
;; Disable package.el in favor of straight.el
|
|
(setq package-enable-at-startup nil)
|
|
|
|
(setq gc-cons-threshold most-positive-fixnum)
|
|
|
|
(add-hook 'emacs-startup-hook
|
|
(lambda ()
|
|
(setq gc-cons-threshold (* 16 1024 1024))))
|