Org: set re-reveal root, add list demotion pattern

This commit is contained in:
TEC 2020-08-08 16:42:56 +08:00
parent c2c5315cf1
commit 7fed494bab
1 changed files with 3 additions and 2 deletions

View File

@ -3160,7 +3160,8 @@ xdg-mime default emacs.desktop text/org
org-log-done 'time ; having the time a item is done sounds convininet
org-list-allow-alphabetical t ; have a. A. a) A) list bullets
org-export-in-background t ; run export processes in external emacs process
org-catch-invisible-edits 'smart) ; try not to accidently do weird stuff in invisible regions
org-catch-invisible-edits 'smart ; try not to accidently do weird stuff in invisible regions
org-re-reveal-root "https://cdn.jsdelivr.net/npm/reveal.js")
#+END_SRC
I also like the ~:comments~ header-argument, so let's make that a default.
#+BEGIN_SRC emacs-lisp
@ -3214,7 +3215,7 @@ Let's also make creating an org buffer just that little bit easier.
***** List bullet sequence
I think it makes sense to have list bullets change with depth
#+BEGIN_SRC emacs-lisp
(setq org-list-demote-modify-bullet '(("+" . "-") ("-" . "+") ("*" . "+")))
(setq org-list-demote-modify-bullet '(("+" . "-") ("-" . "+") ("*" . "+") ("1." . "a.")))
#+END_SRC
***** Citation
Occasionally I want to cite something.