From 46b99567decbc338dcc3b834273fc0a235587758 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 15 Apr 2020 13:12:10 -0400 Subject: [PATCH] Make soft-wrapping the default in text modes --- core/core-editor.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-editor.el b/core/core-editor.el index 42d8ddde7..804b5490e 100644 --- a/core/core-editor.el +++ b/core/core-editor.el @@ -146,7 +146,7 @@ possible." ;; Default to hard line-wrapping in text modes. Hard wrapping is more ;; performant, and Emacs makes it trivially easy to reflow text with ;; `fill-paragraph' and `evil-fill'. -(add-hook 'text-mode-hook #'auto-fill-mode) +(add-hook 'text-mode-hook #'visual-line-mode) ;;