Emacs: changed LaTeX minor modes

Removed fci-mode and auto-fill mode
Added visual-line-mode

Background: don't break lines at 80 chars, but rather after each sentence
This commit is contained in:
Marcel Kapfer 2019-05-20 18:04:56 +02:00
parent 940998796a
commit 65b2c32d0f
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 1 additions and 3 deletions

View File

@ -1275,10 +1275,8 @@ signature-file is the path to the file which contains the signature."
#'TeX-revert-document-buffer)
;; hook for rainbox delimiters mode
(add-hook 'TeX-mode-hook #'rainbow-delimiters-mode)
;; start fci-mode
(add-hook 'TeX-mode-hook #'fci-mode)
;; start auto-fill mode
(add-hook 'TeX-mode-hook #'auto-fill-mode)
(add-hook 'TeX-mode-hook #'visual-line-mode)
:bind (:map latex-mode-map
("<C-return>" . TeX-insert-comment-line)))