From 94c2af65531b389c7ca50b6ac3132543665d06c8 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Mon, 22 Jan 2024 19:56:44 -0500 Subject: [PATCH] fix(emacs): enable fill modes for latex Signed-off-by: Lucas Sta Maria --- .emacs.d/include/latexconfig.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/include/latexconfig.el b/.emacs.d/include/latexconfig.el index 568cfdc..5aa0386 100644 --- a/.emacs.d/include/latexconfig.el +++ b/.emacs.d/include/latexconfig.el @@ -16,6 +16,9 @@ (electric-indent-mode -1) (LaTeX-math-mode 1) (cdlatex-mode 1) + (auto-fill-mode 1) + (display-fill-column-indicator-mode 1) + (set-fill-column 100) (local-set-key (kbd "C-c C-z") #'custom-compile-latex) (local-set-key (kbd "C-c C-b") #'latex-insert-block)