[emacs] better scrolling (both keyboard and mouse)
authorAmin Bandali <bandali@gnu.org>
Thu, 17 Jan 2019 04:00:15 +0000 (23:00 -0500)
committerAmin Bandali <bandali@gnu.org>
Thu, 17 Jan 2019 04:00:15 +0000 (23:00 -0500)
also use the new (version<= "26.1" emacs-version) pixel-scroll-mode

init.org

index 55874eb..16d8da7 100644 (file)
--- a/init.org
+++ b/init.org
@@ -484,6 +484,27 @@ buffers and/or modes.
   (setq mouse-autoselect-window nil))
 #+end_src
 
+** Better scrolling (arguably)
+
+#+begin_src emacs-lisp
+(setq ;; scroll-margin 1
+      ;; scroll-conservatively 10000
+      scroll-step 1
+      scroll-conservatively 10
+      scroll-preserve-screen-position 1)
+
+(use-feature mwheel
+  :defer 1
+  :config
+  (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)) ; one line at a time
+        mouse-wheel-progressive-speed nil            ; don't accelerate scrolling
+        mouse-wheel-follow-mouse t))                 ; scroll window under mouse
+
+(use-feature pixel-scroll
+  :defer 1
+  :config (pixel-scroll-mode 1))
+#+end_src
+
 ** Libraries
 
 #+begin_src emacs-lisp
@@ -757,8 +778,6 @@ Some bindings for functions from built-in GNU Emacs packages:
 
  ("C-c o"   . other-window)
 
- ("C-c Q"   . save-buffers-kill-terminal)
-
  ("C-S-h C" . describe-char)
  ("C-S-h F" . describe-face)