From: rearman Date: Mon, 15 Jun 2026 21:06:29 +0000 (-0400) Subject: re-order org settings, turn off tag inheritance X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=10d77e13d8c425f1569a12c03b915d6c116bf5bf;p=emacsinit.git re-order org settings, turn off tag inheritance --- diff --git a/config.org b/config.org index a37b13e..26d3d00 100644 --- a/config.org +++ b/config.org @@ -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