From 4c1b1cd216b07e7aab64beaf78e67afe001c0a3e Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Fri, 9 Mar 2018 12:14:01 +0100 Subject: [PATCH] Emacs: set auto-window-vscroll to nil --- emacs/emacs.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/emacs/emacs.el b/emacs/emacs.el index 3729565..c00c0c3 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -88,7 +88,9 @@ ;;; indent using spaces, not tabs indent-tabs-mode nil ;; tab width - tab-width 2) + tab-width 2 + ;; https://www.reddit.com/r/emacs/comments/819v0h/how_to_speed_up_cursor_movement_by_10x/ + auto-window-vscroll nil) ;; disable cursor blinking (blink-cursor-mode -1)