From 1c72902cc30b7ffe0de658a289f658b0c0433561 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Fri, 29 Aug 2025 16:48:03 -0400 Subject: [PATCH] Change scroll-conservatively to 20 to fix jumping issues in org-mode buffers --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 8711f3f..9ad7a43 100644 --- a/init.el +++ b/init.el @@ -274,8 +274,8 @@ ;; Emacs recenters the window when the cursor moves past `scroll-conservatively' ;; lines beyond the window edge. A value over 101 disables recentering; the -;; default (0) is too eager. Here it is set to 10 for a balanced behavior. -(setq scroll-conservatively 10) +;; default (0) is too eager. Here it is set to 20 for a balanced behavior. +(setq scroll-conservatively 20) ;; 1. Preventing automatic adjustments to `window-vscroll' for long lines. ;; 2. Resolving the issue of random half-screen jumps during scrolling.