diff options
-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 |