From 879d948fc9a3a3466f6ad86fee478af343ac15f7 Mon Sep 17 00:00:00 2001 From: Ashton Wiersdorf Date: Fri, 31 Mar 2023 15:53:24 -0600 Subject: Add hook to turn on visual-line-mode for sane line-breaking --- init.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 0684f4c..1106538 100644 --- a/init.el +++ b/init.el @@ -48,7 +48,7 @@ (when (display-graphic-p) (context-menu-mode)) -;; Don't litter filesystem with *~ backup files; put them all inside +;; Don't litter file system with *~ backup files; put them all inside ;; ~/.emacs.d/backup or wherever (defun bedrock--backup-file-name (fpath) "Return a new file path of a given file path. @@ -140,6 +140,9 @@ If the new path's directories does not exist, create them." ;; Display line numbers in programming mode (add-hook 'prog-mode-hook 'display-line-numbers-mode) +;; Nice line wrapping when working with text +(add-hook 'text-mode-hook 'visual-line-mode) + ;; Modes to highlight the current line with (let ((hl-line-hooks '(text-mode-hook prog-mode-hook))) (mapc (lambda (hook) (add-hook hook 'hl-line-mode)) hl-line-hooks)) -- cgit v1.2.3