]> git.earman.xyz Git - emacsinit.git/commitdiff
Make visual-line-mode on by default
authorrearman <rearman@r717.net>
Fri, 17 May 2024 21:13:01 +0000 (17:13 -0400)
committerrearman <rearman@r717.net>
Fri, 17 May 2024 21:13:01 +0000 (17:13 -0400)
calc.el
init.org

diff --git a/calc.el b/calc.el
index 3b06088aeefdce6b2b240b541f12f8e797759f6e..1faf4cbce263ca87f8154dea728e2bd22ad0e1a4 100644 (file)
--- a/calc.el
+++ b/calc.el
@@ -8,7 +8,7 @@
  (define-key calc-mode-map "zs" 'calc-User-scale-analog)
 ))
 
-;;; Mode settings stored by Calc on Wed May 15 16:07:20 2024
+;;; Mode settings stored by Calc on Wed May 15 16:26:58 2024
 (setq calc-invocation-macro [C-kp-right 24 42 42 C-kp-up 24 98 42 67 97 108 99 32 84 114 97 105 108 42 return C-kp-down C-kp-right 24 48 90 73 109 109])
 (setq calc-window-height 36)
 ;;; End of mode settings
index e158272cb854b450492c95e831c242045ad61b3b..bc14eafb433ec40162e6985fca995dcda60904a3 100644 (file)
--- a/init.org
+++ b/init.org
@@ -210,6 +210,8 @@ A godsend.  Finally, I can have visual-line-mode without having to read lines th
 #+BEGIN_SRC emacs-lisp
 (use-package visual-fill-column
   :ensure t
+  :config
+  (global-visual-line-mode 1)
   :custom
   (word-wrap t)
   (visual-fill-column-enable-sensible-window-split t))