From 868cf80de4c1f6409b6bffd7a92cd8fb3da8e84c Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 29 May 2023 17:54:05 +0200 Subject: [PATCH] Make scrolling smooth --- emacs/emacs.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index bc03232..c6864c5 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -26,6 +26,11 @@ (setq column-number-mode t) (setq-default show-trailing-whitespace t) +;; From https://www.emacswiki.org/emacs/SmoothScrolling#h5o-8 +(setq scroll-step 1) +(setq scroll-conservatively 10000) +(setq auto-window-vscroll nil) + ;; Colorblind friendly theme. ;; Emacs 28 has modus themes, but EL9 only has emacs 27 -- 2.47.3