From e7d622505e1df29f1284aa5d1c83ec255f00bce2 Mon Sep 17 00:00:00 2001 From: gered Date: Sun, 26 Jan 2025 14:28:00 -0500 Subject: [PATCH] increase mouse wheel scroll speed --- emacs.d/ui.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emacs.d/ui.el b/emacs.d/ui.el index 0713453..a01367a 100644 --- a/emacs.d/ui.el +++ b/emacs.d/ui.el @@ -35,6 +35,9 @@ (setopt tab-bar-show 1) +; this is 99% based off the default value, only the number is changed +(setq mouse-wheel-scroll-amount '(3 ((shift) . hscroll) ((meta)) ((control meta) . global-text-scale) ((control) . text-scale))) + (let ((mono-spaced-font "Cascadia Code") (proportionately-spaced-font "Sans")) (set-face-attribute 'default nil :family mono-spaced-font :height 120)