summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2016-03-16 16:28:40 +0100
committerAlan Pearce2016-03-16 16:28:40 +0100
commit148e754c3ea0ade3a7fb8a507ef4c5089986ed26 (patch)
treecad3351168d643faa41278fb0a79ddf249e63074 /tag-emacs/emacs.d
parent17f740e722b2f4fff978fc4937ded87fb2bc57a1 (diff)
downloaddotfiles-148e754c3ea0ade3a7fb8a507ef4c5089986ed26.tar.lz
dotfiles-148e754c3ea0ade3a7fb8a507ef4c5089986ed26.tar.zst
dotfiles-148e754c3ea0ade3a7fb8a507ef4c5089986ed26.zip
Emacs: Re-enable jit locking
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r--tag-emacs/emacs.d/init.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 18c1270..5655e63 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -185,10 +185,10 @@ because I manage those in my [[file:~/projects/dotfiles/tag-xresources/xresource
 Allow font-lock-mode to do background parsing.  I’m not really sure if
 these settings are particularly useful
 #+BEGIN_SRC emacs-lisp
-  (setq jit-lock-stealth-time nil
+  (setq jit-lock-stealth-time 2
         jit-lock-stealth-load 100
-        jit-lock-chunk-size 300
-        jit-lock-defer-time nil
+        jit-lock-chunk-size 1000
+        jit-lock-defer-time 1
         font-lock-maximum-decoration '((dired-mode . 1)
                                        (t . 1)))
 #+END_SRC