diff options
author | Alan Pearce | 2014-06-28 11:07:04 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-28 11:07:04 +0100 |
commit | e033815cdd9c5a35496438411b6e04adeb424ac6 (patch) | |
tree | e67f2c3912da38b9ee336114b54025ffa05b6bf9 | |
parent | 7b4a011475e80ba795ccfa4c7ea7491831dbe5c7 (diff) | |
download | nixfiles-e033815cdd9c5a35496438411b6e04adeb424ac6.tar.lz nixfiles-e033815cdd9c5a35496438411b6e04adeb424ac6.tar.zst nixfiles-e033815cdd9c5a35496438411b6e04adeb424ac6.zip |
Emacs: Increase vertical window split threshold
-rw-r--r-- | tag-emacs/emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 34931140..3522fa2d 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1068,7 +1068,8 @@ (setq scroll-conservatively 100 ; Keep the cursor position when scrolling scroll-margin 1 scroll-preserve-screen-position nil - mouse-wheel-scroll-amount '(1 ((shift) . 1) ((control)))) + mouse-wheel-scroll-amount '(1 ((shift) . 1) ((control))) + split-height-threshold 100) (when menu-bar-mode (menu-bar-mode -1)) |