From f4b6e239421c32c9255d0bbcc7ded5c5c185e4c4 Mon Sep 17 00:00:00 2001 From: laurensmiers Date: Tue, 26 Jun 2018 12:50:14 +0200 Subject: [PATCH] Set GC threshold --- config.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.org b/config.org index 6d2c3d4..9161825 100644 --- a/config.org +++ b/config.org @@ -65,12 +65,12 @@ so rebind it to something easy to remember. I used to have the following enabled in my init to increase the gc threshold to speed-up emacs startup: (stolen from [[http://bling.github.io/blog/2016/01/18/why-are-you-changing-gc-cons-threshold/]]) -#+BEGIN_SRC -;; (setq gc-cons-threshold 100000000) +#+BEGIN_SRC emacs-lisp +(setq gc-cons-threshold 100000000) #+END_SRC But according to this: [[https://lists.gnu.org/archive/html/help-gnu-emacs/2007-06/msg00243.html ]], -it is no longer necessary. +it is no longer necessary. But I found that I still have to do this to speed up emacs. ** Yes-or-no questions