summaryrefslogtreecommitdiffstats
path: root/lisp/init-sane-defaults.el
diff options
context:
space:
mode:
authorMartin Polden <martin.polden@gmail.com>2014-06-15 19:21:42 +0200
committerMartin Polden <martin.polden@gmail.com>2014-06-15 19:21:42 +0200
commitc2ca24aeda93f08ac52b69d4986ac48969a64d6e (patch)
tree48f83c4b439443067afcfa926ca3310e7c0e981c /lisp/init-sane-defaults.el
parent291c034d157c4c7003529c56cf7fd8309455bbf3 (diff)
Shift increases scroll speed
Diffstat (limited to 'lisp/init-sane-defaults.el')
-rw-r--r--lisp/init-sane-defaults.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/init-sane-defaults.el b/lisp/init-sane-defaults.el
index fbe0e23..af73133 100644
--- a/lisp/init-sane-defaults.el
+++ b/lisp/init-sane-defaults.el
@@ -11,7 +11,10 @@
(setq ring-bell-function 'ignore)
;; scroll one line at a time
-(setq mouse-wheel-scroll-amount '(1 ((shift) . 1)))
+(setq mouse-wheel-scroll-amount
+ '(1
+ ((shift) . 5)
+ ((control))))
;; disable scroll acceleration
(setq mouse-wheel-progressive-speed nil)