From 2cf0e62418b9c1f69bd56a2228f3dfa2e435338b Mon Sep 17 00:00:00 2001 From: Daniel Weschke Date: Tue, 30 Nov 2021 21:28:33 +0100 Subject: [PATCH] fix org default tag keys --- settings/org-settings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/org-settings.el b/settings/org-settings.el index 00de99ce..3a679892 100644 --- a/settings/org-settings.el +++ b/settings/org-settings.el @@ -247,7 +247,7 @@ Example defines (setq org-startup-with-inline-images t) ;; #+STARTUP: inlineimages|noinlineimages, show inline images when loading a new Org file (setq org-use-sub-superscripts '{}) ;; braces are *required* in order to trigger interpretations as sub/superscript, see also `org-export-with-sub-superscripts'. C-c C-x \ (`org-toggle-pretty-entities') (setq org-image-actual-width '(600)) ;; image width displayed in org - (setq org-tag-persistent-alist '(("ignore" . "i") ("noexport" . "n"))) + (setq org-tag-persistent-alist '(("ignore" . ?i) ("noexport" . ?n))) ;; todo see also org-todo-keyword-faces and org-superstar-todo-bullet-alist (setq org-todo-keywords ;; (x!) record a time stamp, (x@) add a note (with time), (y/z) entering the state / leaving the state '((sequence "TODO(t)" "WAIT(w)" "|" "DONE(d)" "CANC(c)")))