From 54344530929e2ce036046726e1e341f0e0730b7b Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 7 Jan 2012 20:26:51 +0000 Subject: [PATCH] moved scrolling behavior customizations from appearance.el to behavior.el --- appearance.el | 6 ------ behavior.el | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) 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)