-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit_org-drill.el
29 lines (24 loc) · 922 Bytes
/
init_org-drill.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;; init_org-drill.el --- Set up SRS extension for Org
;; =============================================================================
;; Org-Drill Set Up
;; =============================================================================
;; Written by Jeff Russell
;; Updated: 2020-04-21 1336
;; jpowellrussell.com
;; -----------------------------------------------------------------------------
;;; Commentary:
;; Org-Drill is a Spaced Repetition Study extension for Org-Mode to allow for
;; memorization and incremental reading in the style of Supermemo or Anki
;;; Code:
(use-package org-drill
:straight t
:defer t
:config
;;(setq org-drill-scope directory)
(setq org-drill-use-visible-cloze-face-p t)
(setq org-drill-maximum-items-per-session 250)
(setq org-drill-maximum-duration 60)
(setq org-drill-add-random-noise-to-intervals-p t)
)
(provide 'init_org-drill)
;;; init_org-drill.el ends here