diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-07-10 22:26:36 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-07-10 22:26:36 -0400 |
commit | d8941db97752af7e856dd91be4bf2366aa517bc5 (patch) | |
tree | 872437765d00236384cd9cc0de5fa804546573b8 /init.el | |
parent | Save org files before updating Agenda view (diff) | |
download | mmosmacs-d8941db97752af7e856dd91be4bf2366aa517bc5.tar.gz mmosmacs-d8941db97752af7e856dd91be4bf2366aa517bc5.tar.bz2 mmosmacs-d8941db97752af7e856dd91be4bf2366aa517bc5.zip |
Enable `auto-revert-mode` in all `org-mode` buffers
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -819,7 +819,9 @@ | |||
819 | ;; `org' configuration | 819 | ;; `org' configuration |
820 | (use-package org | 820 | (use-package org |
821 | :straight t | 821 | :straight t |
822 | :hook (org-mode . mm/org-mode-setup) | 822 | :hook |
823 | (org-mode . mm/org-mode-setup) | ||
824 | (org-mode . auto-revert-mode) | ||
823 | :config | 825 | :config |
824 | (mm/org-font-setup) | 826 | (mm/org-font-setup) |
825 | (setq org-startup-folded t | 827 | (setq org-startup-folded t |