diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-12 08:27:23 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-12 08:27:23 +0200 |
commit | dd397e6a4a9368117e2689904bb6bb8586d598e9 (patch) | |
tree | cb77217fdd0a6d990036c9d156c48ec58769c851 /.config/emacs | |
parent | 711d99bd9f277df87d9a50704d6d1e7ed1cbe84a (diff) |
emacs: ‘fill-column’ is buffer-local
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/config.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index a530577..d517d6b 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -965,7 +965,7 @@ mixed on when I do and -don’t want it. I always want it in ~org-mode~ though. #+BEGIN_SRC elisp - (setq fill-column 80) + (setq-default fill-column 80) (add-hook 'org-mode-hook #'auto-fill-mode) #+END_SRC |