diff options
author | noa | 2025-02-17 15:21:07 +0800 |
---|---|---|
committer | noa | 2025-02-17 15:21:07 +0800 |
commit | 74cd8b16bbe189e3d21fbc2fa5582afe492d42e8 (patch) | |
tree | da788749f19a3c2bbcc69c6d53ba0d7e5092e12d /emacs/init.el | |
parent | 5fcbeb3778f2187cf6ab633b084949bf21d1c7ac (diff) |
Remove inline-anki
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 15 |
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")) |