aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-01-09 21:36:36 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-01-09 21:36:36 -0600
commit71f7680451efb665bf2ad21bc51da3d95b18e7df (patch)
tree4ee3ed10bf444dfafc5c0c1f5ae753bc3f24cd3c
parentfc0023ad20e7742916876619ddcbce239f2b3010 (diff)
system changes
-rw-r--r--common/.config/emacs/init.el.org11
1 files changed, 1 insertions, 10 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index 90d2618..c9d35e0 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -149,20 +149,11 @@ Install and configure =visual-fill-column= to make some file types display with
visual-fill-column-center-text t))
#+end_src
-Install and configure =ultra-scroll= for nicer scrolling (not yet in =melpa=, so the install with =package-vc-install=).
-#+begin_src emacs-lisp
- (package-vc-install '(ultra-scroll :vc-backend Git :url "https://github.com/jdtsmith/ultra-scroll"))
- (setq scroll-conservatively 101
- scroll-margin 0)
- (ultra-scroll-mode 1)
-#+end_src
-
-
* Behaviour
Make Emacs scroll one line at a time instead of big jumps.
#+begin_src emacs-lisp
- ;;(setq scroll-conservatively most-positive-fixnum)
+ (setq scroll-conservatively most-positive-fixnum)
#+end_src
Make Emacs delete trailing whitspace on save. This does not happen in =markdown-mode= which sometimes needs trailing whitespace.