diff --git a/appearance.el b/appearance.el index 252accd..e61b6b5 100644 --- a/appearance.el +++ b/appearance.el @@ -31,12 +31,6 @@ (if window-system () (setq linum+-smart-format "%%%dd " linum+-dynamic-format "%%%dd ")) -;; scroll one line at a time (less "jumpy" than defaults) -(setq mouse-wheel-scroll-amount '(2 ((shift) . 10)) ;; two lines 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 0) ;; Display whitespace characters globally (global-whitespace-mode t) diff --git a/behavior.el b/behavior.el index 2616f72..9a09f94 100644 --- a/behavior.el +++ b/behavior.el @@ -11,3 +11,9 @@ ;; (winner-mode 1) ;; (desktop-save-mode 1) +;; scroll one line at a time (less "jumpy" than defaults) +(setq mouse-wheel-scroll-amount '(2 ((shift) . 10)) ;; two lines 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 0)