moved scrolling behavior customizations from appearance.el to behavior.el

This commit is contained in:
2012-01-07 20:26:51 +00:00
parent dd98f4f45a
commit 5434453092
2 changed files with 6 additions and 6 deletions

View File

@@ -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)

View File

@@ -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)