From c1802d3f99068b2fbc92e950df351222c9d6e533 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 28 Jan 2020 10:25:01 +0100 Subject: [PATCH] Emacs: Reduce scroll lag significantly. --- init.d/basics/input.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.d/basics/input.el b/init.d/basics/input.el index 98aef53..9e35527 100644 --- a/init.d/basics/input.el +++ b/init.d/basics/input.el @@ -1,6 +1,6 @@ ;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-01-27T09:21:13+0100> +;; Time-stamp: <2020-01-28T10:24:44+0100> ;;; Commentary: ;; * Setup mouse & keyboard behaviour. @@ -15,6 +15,8 @@ (mouse-wheel-scroll-amount '(1 ((shift) . 1))) ; Scroll 1 line at a time. ;; Paste text where the cursor is, not where the mouse is. (mouse-yank-at-point t) + ;; Reduce scroll lag significantly. + (auto-window-vscroll nil) :config (delete-selection-mode t) ; Delete selection when you start to write.