summary refs log tree commit diff
diff options
context:
space:
mode:
authornoa2025-02-17 14:53:01 +0800
committernoa2025-02-17 14:53:01 +0800
commit638f749e1a9fae155d1afad4f0053ba310f1677a (patch)
tree0088cd52d63973619c71e3d83941dd9216da6a41
parent1fa89830273bf38bafb4deda919fe81dd7acffe3 (diff)
Remove pixel scrolling
-rw-r--r--emacs/init.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/emacs/init.el b/emacs/init.el
index df22ab6..ee41e05 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -61,15 +61,6 @@
   :disabled t
   :bind ("C-." . emoji-search))
 
-;; Smooth-ish scrolling with the mouse, and smooth scrolling with C-v and M-v.  Sadly it doesn't work with C-l.
-(use-package pixel-scroll
-  :hook (after-init . pixel-scroll-precision-mode)
-  :custom
-  (pixel-scroll-precision-use-momentum t)
-  (pixel-scroll-precision-interpolate-page t)
-  :bind (([remap scroll-up-command] . pixel-scroll-interpolate-down)
-         ([remap scroll-down-command] . pixel-scroll-interpolate-up)))
-
 ;; Nicer terminal emacs
 (set-display-table-slot standard-display-table 'vertical-border (make-glyph-code ?│))
 (setq mode-line-end-spaces nil)