mirror of
https://github.com/Foltik/dotfiles
synced 2025-02-17 14:18:08 -05:00
Add better smooth scrolling
This commit is contained in:
parent
d679237e82
commit
fd92b046a7
@ -313,14 +313,6 @@ and =#file#= lockfiles. Schlunk them all in =/tmp= instead.
|
|||||||
(setq auto-save-file-name-transforms
|
(setq auto-save-file-name-transforms
|
||||||
`((".*" ,temporary-file-directory t)))
|
`((".*" ,temporary-file-directory t)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Nicer Scrolling
|
|
||||||
Keep the cursor away from the edges when scrolling,
|
|
||||||
rather than hitting the bottom and scrolling a metric
|
|
||||||
boatload off the screen.
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(require 'smooth-scrolling)
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
*** Secure auth-source
|
*** Secure auth-source
|
||||||
GPG encrypt stored auth tokens from [[https://www.gnu.org/software/emacs/manual/html_mono/auth.html][auth-source]] instead of storing them in plaintext.
|
GPG encrypt stored auth tokens from [[https://www.gnu.org/software/emacs/manual/html_mono/auth.html][auth-source]] instead of storing them in plaintext.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
@ -402,6 +394,13 @@ Shows matching parenthesis
|
|||||||
(setq show-paren-delay 0)
|
(setq show-paren-delay 0)
|
||||||
(show-paren-mode)
|
(show-paren-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** Scrolling
|
||||||
|
Scroll smooth-ish-ly instead of jarring jumps.
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package smooth-scroll
|
||||||
|
:config
|
||||||
|
(smooth-scroll-mode t))
|
||||||
|
#+END_SRC
|
||||||
*** Dashboard
|
*** Dashboard
|
||||||
Show a cool custom dashboard buffer on startup.
|
Show a cool custom dashboard buffer on startup.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
Loading…
Reference in New Issue
Block a user