summary refs log tree commit diff
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-07-28 09:52:00 +0000
committernoa@gaiwan.org2024-07-28 09:52:00 +0000
commit96146370abccfa39973787a63478ffe6f86bdc51 (patch)
treefef94edd7082b35404e3b13435fecdf0c15788de
parentdab4339fc1f72fe87ec15591713a3a681bc2114e (diff)
Remove org modern
-rw-r--r--config.org44
1 files changed, 0 insertions, 44 deletions
diff --git a/config.org b/config.org
index b62bb77..402b45c 100644
--- a/config.org
+++ b/config.org
@@ -706,50 +706,6 @@ This doesn't work with code blocks at the moment.
   (global-set-key (kbd "C-c l") #'org-store-link)
 #+end_src
 
-#+begin_src elisp :tangle no
-  ;; (package-ensure 'org-ql)
-  ;; (package-ensure 'org-super-links)
-  ;; (setopt org-super-links-search-function #'helm-org-ql)
-#+end_src
-
-#+begin_src elisp :tangle no
-  ;; (package-ensure 'org-modern)
-  ;; (add-hook 'org-mode-hook #'org-modern-mode)
-  ;; (add-hook 'org-agenda-finalize-hook #'org-modern-agenda)
-#+end_src
-
-There are three ways to make bullet lists in org mode, which seems a bit excessive to me.  I almost always only use the hyphen, but i like my bullet points to look like bullets, so here i overwrite the hyphen display to show a bullet point.  While i'm at it, i overwrite the others too, because they are functionally identical so should probably look the same too.
-
-#+begin_src elisp
-(setopt org-modern-list '((?+ . " • ")
-		          (?- . " • ")
-		          (?* . " • ")))
-			  #+end_src
-
-This doesn't respect my timestamp custom format configured above.
-
-#+begin_src elisp
-(setopt org-modern-timestamp nil)
-#+end_src
-
-#+begin_src elisp
-  (setopt org-modern-star nil)
-  (setopt org-modern-keyword nil)
-  (setopt org-modern-checkbox '((88 . "☑")
-				(45 . #("□–" 0 2
-					(composition
-					 ((2)))))
-				(32 . "□")))
-  (setopt org-modern-table nil)
-  (setopt org-modern-block-name nil)
-  (setopt org-modern-internal-target nil)
-  (setopt org-modern-tag nil)
-#+end_src
-
-#+begin_src elisp
-(setopt org-id-link-to-org-use-id 'create-if-interactive-and-no-custom-id)
-#+end_src
-
 *** Nicer org-mode tables
 
 #+begin_src elisp