We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46cecd8 commit ca2b792Copy full SHA for ca2b792
emacs/.config/emacs/early-init.el
@@ -217,6 +217,13 @@
217
;; (add-to-list 'default-frame-alist '(internal-border-width . 10))
218
;; (add-to-list 'default-frame-alist '(ns-appearance . dark))
219
220
+;; Perf: fontify when idle, speed ups scroll
221
+;; https://www.reddit.com/r/emacs/comments/14c4l8j/comment/joku4bh/
222
+;; https://codeberg.org/ideasman42/emacs-jit-lock-stealth-progress
223
+(setq jit-lock-stealth-time 1.25)
224
+(setq jit-lock-stealth-nice 0.5) ;; Seconds between font locking.
225
+(setq jit-lock-chunk-size 4096)
226
+
227
;; Bump up gc threshold until emacs startup
228
(setq gc-cons-threshold most-positive-fixnum gc-cons-percentage 0.6)
229
(add-hook 'emacs-startup-hook
0 commit comments