From 5e51cfd785f6938c14ecfec95a7ef753538e3e3f Mon Sep 17 00:00:00 2001 From: rearman Date: Fri, 17 May 2024 17:13:01 -0400 Subject: [PATCH] Make visual-line-mode on by default --- calc.el | 2 +- init.org | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/calc.el b/calc.el index 3b06088..1faf4cb 100644 --- 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 diff --git a/init.org b/init.org index e158272..bc14eaf 100644 --- 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)) -- 2.39.5