diff options
author | Case Duckworth | 2021-01-13 19:52:14 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-13 19:52:14 -0600 |
commit | 47db7727ea41caf872ed19da6a8b4414256f63cb (patch) | |
tree | 0dd5c84516d288f544533daf76a2bc3c6779bb8a | |
parent | Change indentation (diff) | |
download | emacs-47db7727ea41caf872ed19da6a8b4414256f63cb.tar.gz emacs-47db7727ea41caf872ed19da6a8b4414256f63cb.zip |
Scroll faster
-rw-r--r-- | config.org | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config.org b/config.org index fb78c55..c2803b1 100644 --- a/config.org +++ b/config.org | |||
@@ -786,6 +786,21 @@ | |||
786 | (apply original arguments))) | 786 | (apply original arguments))) |
787 | #+end_src | 787 | #+end_src |
788 | 788 | ||
789 | *** Scroll much faster | ||
790 | |||
791 | from [[https://github.com/mpereira/.emacs.d#make-cursor-movement-an-order-of-magnitude-faster][mpereira]], from somewhere else. | ||
792 | |||
793 | #+begin_src emacs-lisp | ||
794 | (cuss auto-window-vscroll nil | ||
795 | "Don't auto-adjust `window-vscroll' to view long lines.") | ||
796 | |||
797 | (cuss fast-but-imprecise-scrolling t | ||
798 | "Scroll fast, but possibly with inaccurate text rendering.") | ||
799 | |||
800 | (cuss jit-lock-defer-time 0 | ||
801 | "Only defer font-locking when input is pending.") | ||
802 | #+end_src | ||
803 | |||
789 | ** Persistence | 804 | ** Persistence |
790 | 805 | ||
791 | *** Minibuffer history | 806 | *** Minibuffer history |