-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit_org-noter.el
41 lines (36 loc) · 1.88 KB
/
init_org-noter.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
30
31
32
33
34
35
36
37
38
39
40
41
;;; init_org-noter.el --- Set up Org interleaved annotation tool
;; ==============================================================================
;; Org-Noter Set Up
;; ==============================================================================
;; Written by Jeff Russell
;; Updated: 2020-04-28 1542
;; jpowellrussell.com
;; ------------------------------------------------------------------------------
;;; Commentary:
;; Allows for "interleaved" note-taking on PDFs, epubs, and other docs in a
;; linked org file. I'm not sure whether this will become a part of my
;; incremental reading workflow or not, but I think at a minimum it will show me
;; some options on how to approach it.
;;; Code:
(use-package org-noter
:straight t
:defer t
:config
(setq-default org-noter-auto-save-last-location t)
(setq org-noter-notes-search-path '("~/dropbox/khs/reading_thoughts"
"~/dropbox/khs/increading"
"~/dropbox/khs/increading/creativity"
"~/dropbox/khs/increading/economics"
"~/dropbox/khs/increading/history"
"~/dropbox/khs/increading/learning"
"~/dropbox/khs/increading/military"
"~/dropbox/khs/increading/myth_and_religion"
"~/dropbox/khs/increading/philosophy"
"~/dropbox/khs/increading/politics"
"~/dropbox/khs/increading/programming"
"~/dropbox/khs/increading/psychology"
"~/dropbox/khs/increading/science"
"~/dropbox/khs/increading/technology"))
)
(provide 'init_org-noter)
;;; init_org-noter.el ends here