Fix error with filling section

This commit is contained in:
2024-10-20 20:50:29 +01:00
parent 4c64e8de0a
commit 84a6aff3b2

View File

@@ -1175,12 +1175,12 @@ use 70 fill columns while code should stick to 80.
(use-package emacs (use-package emacs
:hook :hook
(text-mode-hook . auto-fill-mode) (text-mode-hook . auto-fill-mode)
:init
(setq-default fill-column 80)
(add-hook 'text-mode-hook (proc (setq-local fill-column 70)))
((c-mode-hook c++-mode-hook haskell-mode-hook python-mode-hook ((c-mode-hook c++-mode-hook haskell-mode-hook python-mode-hook
org-mode-hook text-mode-hook js-mode-hook) org-mode-hook text-mode-hook js-mode-hook)
. display-fill-column-indicator-mode)) . display-fill-column-indicator-mode)
:init
(setq-default fill-column 80)
(add-hook 'text-mode-hook (proc (setq-local fill-column 70))))
#+end_src #+end_src
** Visual line mode ** Visual line mode
When dealing with really long lines I have a specific taste. I don't When dealing with really long lines I have a specific taste. I don't