diff options
author | Alan Pearce | 2016-04-29 11:02:16 +0200 |
---|---|---|
committer | Alan Pearce | 2016-04-29 11:02:16 +0200 |
commit | ca551892f1491f46de7fca055b97fcce90aa5bfa (patch) | |
tree | e87fb79f557409f31c80e2ad3e4715a0ee4a9137 /tag-emacs | |
parent | 441224ff2e7e10c8e6e393b0d0cf2c9b76b660bf (diff) | |
download | nixfiles-ca551892f1491f46de7fca055b97fcce90aa5bfa.tar.lz nixfiles-ca551892f1491f46de7fca055b97fcce90aa5bfa.tar.zst nixfiles-ca551892f1491f46de7fca055b97fcce90aa5bfa.zip |
Emacs: Remove JIT/deferred font-locking
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 1059b688..4c0f22e4 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 locking in dired mode in particular. I might want to +re-increase it in other places, but in dired the maximum is too high +#+BEGIN_SRC emacs-lisp + (setq font-lock-maximum-decoration '((dired-mode . 1) (t . 1))) #+END_SRC |