mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
mouse-wheel-scroll-amount-horizontal = 2
Make hscrolling a little faster. Our windows and displays are large. Scrolling one character at a time is too slow.
This commit is contained in:
@ -194,7 +194,8 @@ or if the current buffer is read-only or not file-visiting."
|
||||
;; for tall lines.
|
||||
auto-window-vscroll nil
|
||||
;; mouse
|
||||
mouse-wheel-scroll-amount '(2 ((shift) . hscroll)))
|
||||
mouse-wheel-scroll-amount '(2 ((shift) . hscroll))
|
||||
mouse-wheel-scroll-amount-horizontal 2)
|
||||
|
||||
;; Remove hscroll-margin in shells, otherwise it causes jumpiness
|
||||
(setq-hook! '(eshell-mode-hook term-mode-hook) hscroll-margin 0)
|
||||
|
Reference in New Issue
Block a user