My personal emacs configuration

Wrap lines at 80 characters, for text mode

+5
+5
init.el
··· 226 226 227 227 ;; Draw a ruler at the 80 character column. 228 228 (add-hook 'prog-mode-hook #'display-fill-column-indicator-mode) 229 + (add-hook 'text-mode-hook #'display-fill-column-indicator-mode) 230 + 231 + ;; Wrap long lines at 80 charaters, for text files. 232 + (setq-default fill-column 80) 233 + (add-hook 'text-mode-hook #'auto-fill-mode) 229 234 230 235 ;; M-x customize. 231 236 (custom-set-variables