summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2016-04-17 17:26:56 +0200
committerAlan Pearce2016-04-17 17:26:56 +0200
commitdd9125cec6325d814cd94c0362873dc173e4d6ac (patch)
treec8050092f9295f24d1c051aadb63dec1039bdd27 /tag-emacs/emacs.d
parent19cd207ce12743354df5a67fb464d1f5d689a85c (diff)
downloaddotfiles-dd9125cec6325d814cd94c0362873dc173e4d6ac.tar.lz
dotfiles-dd9125cec6325d814cd94c0362873dc173e4d6ac.tar.zst
dotfiles-dd9125cec6325d814cd94c0362873dc173e4d6ac.zip
Remove deferred and stealth fontification
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r--tag-emacs/emacs.d/init.org12
1 files changed, 4 insertions, 8 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 6716c57..a8fa691 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -177,14 +177,10 @@ because I manage those in my [[file:~/projects/dotfiles/tag-xresources/xresource
       (ap/set-fonts "Source Code Pro" 14 "Input Sans" 14))))
 #+END_SRC
 
-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 2
-        jit-lock-stealth-load 100
-        jit-lock-chunk-size 1000
-        jit-lock-defer-time 1
-        font-lock-maximum-decoration '((dired-mode . 1)
+Reduce font decoration.  I’m trying to see whether this helps me focus
+on the right things.
+#+BEGIN_SRC emacs-lisp
+  (setq font-lock-maximum-decoration '((dired-mode . 1)
                                        (t . 1)))
 #+END_SRC