summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--emacs/init.el15
1 files changed, 0 insertions, 15 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 958b453..e106e81 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -462,14 +462,6 @@ The misspelled word is taken from OVERLAY.  WORD is the corrected word."
 (use-package org
   :defer t
   :init
-  ;; Repurpose underline syntax for cloze deletion face
-  (defface my-cloze '((t . (:box t))) "Cloze face for Inline-Anki")
-  (setq org-emphasis-alist '(("*" bold)
-                             ("/" italic)
-                             ("_" my-cloze) ;; new
-                             ("=" org-verbatim verbatim)
-                             ("~" org-code verbatim)
-                             ("+" (:strike-through t))))
 
   :custom
   (org-agenda-files '("~/Documents/Notes.org" "~/Documents/Notes/"))
@@ -520,13 +512,6 @@ The misspelled word is taken from OVERLAY.  WORD is the corrected word."
 ;; See https://llazarek.github.io/blog/2018/07/organization-with-org-mode.html
 ;; for configuring the org agenda
 
-(use-package inline-anki
-  :defer t
-  :after org
-  :load-path "~/.config/emacs/site-lisp/inline-anki"
-  :config
-  (add-to-list 'org-structure-template-alist '("f" . "flashcard")))
-
 (use-package ctrlj
   :load-path "~/Documents/Projects/2024-10-08 Ctrlj"
   :init (global-unset-key (kbd "C-j"))