diff options
author | Ashley Duckworth | 2021-01-22 14:57:51 -0600 |
---|---|---|
committer | Ashley Duckworth | 2021-01-22 14:57:51 -0600 |
commit | b20038da0d56206d211e1316c08230584bccae06 (patch) | |
tree | 2d75467004dbe1228a6b0180006e610d718d9ffb | |
parent | Add hippie-expand and reorganize (diff) | |
download | emacs-b20038da0d56206d211e1316c08230584bccae06.tar.gz emacs-b20038da0d56206d211e1316c08230584bccae06.zip |
Add fast scrolling settings
-rw-r--r-- | config.org | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config.org b/config.org index 06b246c..5711a84 100644 --- a/config.org +++ b/config.org | |||
@@ -567,6 +567,16 @@ generally use it as a leader for entering applications. | |||
567 | (blackout 'which-key-mode) | 567 | (blackout 'which-key-mode) |
568 | #+end_src | 568 | #+end_src |
569 | 569 | ||
570 | ** Scrolling | ||
571 | |||
572 | According to [[https://github.com/mpereira/.emacs.d#make-cursor-movement-an-order-of-magnitude-faster][Murilo Pereira]], these settings will make Emacs scrolling | ||
573 | "an order of magnitude faster." | ||
574 | |||
575 | #+begin_src emacs-lisp :noweb-ref settings | ||
576 | (setq-default auto-window-vscroll nil | ||
577 | fast-but-imprecise-scrolling t) | ||
578 | #+end_src | ||
579 | |||
570 | * Persistence | 580 | * Persistence |
571 | 581 | ||
572 | ** Minibuffer history | 582 | ** Minibuffer history |