summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2015-12-04 17:54:38 +0100
committerAlan Pearce2015-12-04 17:54:38 +0100
commit1efcbaeba314c7c737881499a0c21126928b29e6 (patch)
tree4ca2e346d9d7efb71d972c9d9785baa51a9d2f62 /tag-emacs/emacs.d
parent82f7865da9de7e591cfe773801604fe6b10a9eed (diff)
downloadnixfiles-1efcbaeba314c7c737881499a0c21126928b29e6.tar.lz
nixfiles-1efcbaeba314c7c737881499a0c21126928b29e6.tar.zst
nixfiles-1efcbaeba314c7c737881499a0c21126928b29e6.zip
Emacs: Tinker with font-locking settings
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 4cf15664..2e8f88bb 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -307,10 +307,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 1
+  (setq jit-lock-stealth-time nil
         jit-lock-stealth-load 100
-        jit-lock-chunk-size 1000
-        jit-lock-defer-time 0.01
+        jit-lock-chunk-size 300
+        jit-lock-defer-time nil
         font-lock-maximum-decoration '((dired-mode . 1)
                                        (t . t)))
 #+END_SRC