Move scroll settings to packages file

This commit is contained in:
MitchMarq42 2023-01-04 13:21:28 -09:00
parent 951b1d7f06
commit 30c6af1f31
2 changed files with 4 additions and 4 deletions

View File

@ -70,10 +70,6 @@
;; (defvar display-line-numbers-width-start t)
;; scroll step stuff
(setq scroll-margin 2
scroll-conservatively 100
scroll-up-aggressively 0.01
scroll-down-aggressively 0.01)
(global-visual-line-mode t)
;; UTF-8 supremacy (Snippet originally from https://github.com/doomemacs/doomemacs/blob/master/early-init.el, but it's not in there anymore)

View File

@ -8,6 +8,10 @@
(use-package emacs
:custom
(scroll-margin 2)
(scroll-conservatively 100)
(scroll-up-aggressively 0.01)
(scroll-down-aggressively 0.01)
:init
)