set scroll margin to 0 again, and changed mouse-wheel scroll steps from 1 to 2

This commit is contained in:
2011-10-07 22:09:56 +01:00
parent 00dcb90f8a
commit 6d6d6bd50a

View File

@@ -30,11 +30,11 @@
(setq linum+-smart-format "%%%dd " linum+-dynamic-format "%%%dd "))
;; scroll one line at a time (less "jumpy" than defaults)
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1)) ;; one line at a time
(setq mouse-wheel-scroll-amount '(2 ((shift) . 2)) ;; one line at a time
mouse-wheel-progressive-speed nil ;; don't accelerate scrolling
mouse-wheel-follow-mouse 't ;; scroll window under mouse
scroll-step 1 ;; keyboard scroll one line at a time
scroll-margin 5)
scroll-margin 0)
;; Display whitespace characters globally
(global-whitespace-mode t)