Add ultra-scroll package

This commit is contained in:
2025-09-29 12:27:18 +02:00
parent f9828ffe71
commit 83effe594b

12
init.el
View File

@@ -327,7 +327,17 @@
:straight t :straight t
:bind (("C-x w" . elfeed)) :bind (("C-x w" . elfeed))
:config :config
(setq elfeed-sort-order 'ascending)) (setq elfeed-sort-order 'ascending))
;; ultra-scroll for improved pixel scrolling
(use-package ultra-scroll
:vc (:url "https://github.com/jdtsmith/ultra-scroll") ; if desired (emacs>=v30)
:straight nil
:init
(setq scroll-conservatively 3 ; or whatever value you prefer, since v0.4
scroll-margin 0) ; important: scroll-margin>0 not yet supported
:config
(ultra-scroll-mode 1))
;; Duplicate ;; Duplicate
(use-package duplicate-thing (use-package duplicate-thing