]> git.earman.xyz Git - emacsinit.git/commitdiff
re-order org settings, turn off tag inheritance
authorrearman <rearman@r717.net>
Mon, 15 Jun 2026 21:06:29 +0000 (17:06 -0400)
committerrearman <rearman@r717.net>
Mon, 15 Jun 2026 21:06:29 +0000 (17:06 -0400)
config.org

index a37b13ecc4a5bddf18247675f0c588ea67f64952..26d3d009d3437ad691d463ef3a13704717747016 100644 (file)
@@ -221,31 +221,32 @@ Sly really doesn't play well with elodc in the minibuffer, so here are some sett
 #+BEGIN_SRC emacs-lisp
   (with-eval-after-load 'org-mode (add-to-list 'org-export-backends 'md))
 
-  (setq org-startup-indented t
-        org-indent-indentation-per-level tab-width
-        org-startup-folded 'fold
-        org-startup-with-inline-images t
-        org-cycle-inline-images-display t
-        org-cycle-separator-lines 0
-        org-M-RET-may-split-line nil
-        org-list-allow-alphabetical t
-        org-fold-catch-invisible-edits 'show-and-error
-        org-ellipsis "↴"
-        org-tags-column 0
-        org-reverse-note-order t
-        org-enforce-todo-dependencies t
-        org-enforce-todo-checkbox-dependencies t
-        org-fontify-done-headline nil
-        org-src-fontify-natively nil
-        org-goto-interface 'outline-path-completion
-        org-outline-path-complete-in-steps nil
-        org-goto-auto-isearch nil
-        org-special-ctrl-a/e t
-        org-special-ctrl-k t
-        org-return-follows-link t
-        org-yank-adjusted-subtrees t
-        org-src-window-setup 'current-window
-        org-src-preserve-indentation t)
+(setq org-M-RET-may-split-line nil
+      org-cycle-inline-images-display t
+      org-cycle-separator-lines 0
+      org-ellipsis "↴"
+      org-enforce-todo-checkbox-dependencies t
+      org-enforce-todo-dependencies t
+      org-fold-catch-invisible-edits 'show-and-error
+      org-fontify-done-headline nil
+      org-goto-auto-isearch nil
+      org-goto-interface 'outline-path-completion
+      org-indent-indentation-per-level tab-width
+      org-list-allow-alphabetical t
+      org-outline-path-complete-in-steps nil
+      org-return-follows-link t
+      org-reverse-note-order t
+      org-special-ctrl-a/e t
+      org-special-ctrl-k t
+      org-src-fontify-natively nil
+      org-src-preserve-indentation t
+      org-src-window-setup 'current-window
+      org-startup-folded 'fold
+      org-startup-with-inline-images t
+      org-tags-column 0
+      org-use-tag-inheritance nil
+      org-yank-adjusted-subtrees t
+      org-startup-indented t)
 #+END_SRC
 **** Time Clocking
 #+BEGIN_SRC emacs-lisp