-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit-org.el
245 lines (223 loc) · 8.63 KB
/
init-org.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
;;; init-org -- Use Orgmode to organize my notes.
;;;
;;; Commentary:
;;;
;;; Code:
(eval-when-compile
(add-to-list 'load-path (expand-file-name "straight/repos/use-package" user-emacs-directory))
(require 'use-package))
(defun ck/org-confirm-babel-evaluate (lang body)
"LANG and BODY."
(not (or (string= lang "dot"))))
;; Emacs IPython Notebook
(use-package ein :straight t)
(use-package org
:straight (:type git :host github :repo "coldnight/org-mode" :branch "branch_9.5.5")
:bind
("C-c c" . org-capture)
("C-c a o" . org-agenda)
("C-c a g")
("C-c C-." . org-mark-ring-goto)
:custom
(org-startup-indented t)
(org-hide-leading-stars t)
(org-odd-level-only nil)
(org-insert-heading-respect-content nil)
(org-M-RET-may-split-line '((item) (default . t)))
(org-pretty-entities t)
(org-hide-emphasis-markers t) ;; 隐藏标记
(org-return-follows-link nil)
(org-catch-invisible-edits 'show-and-error)
(org-use-speed-commands t)
(org-startup-align-all-tables nil)
(org-log-into-drawer nil)
(org-speed-commands-user nil)
(org-blank-before-new-entry '((heading . nil) (plain-list-item . nil)))
(org-completion-use-ido t)
(org-indent-mode t)
(org-startup-truncated nil)
(org-confirm-babel-evaluate 'ck/org-confirm-babel-evaluate)
:custom-face
(org-headline-done ((nil (:strike-through t))))
:config
;; 中文行内格式不用加空格
;; https://emacs-china.org/t/orgmode/9740/18?u=grayking
(require 'org)
(setq org-emphasis-regexp-components '("-[:multibyte:][:space:]('\"{" "-[:multibyte:][:space:].,:!?;'\")}\\[" "[:space:]" "." 1))
(org-set-emph-re 'org-emphasis-regexp-components org-emphasis-regexp-components)
(org-element-update-syntax)
(require 'init-my-gtd)
(org-babel-do-load-languages
'org-babel-load-languages
'((ein . t)
(dot . t))))
(use-package org-journal
:straight t
:bind
("C-c j s" . org-journal-search)
("C-c j f" . org-journal-open-next-entry)
("C-c j b" . org-journal-open-previous-entry)
("C-c j j" . org-journal-new-entry)
:custom
(org-journal-file-type 'monthly)
(org-journal-dir (expand-file-name "codes/notes/roam-research-notes-hugo/journal" "~"))
;; (org-journal-enable-encryption t)
;; (org-journal-encrypt-journal t)
(org-journal-enable-agenda-integration nil)
(org-journal-file-header
(lambda (time)
(concat
(pcase org-journal-file-type
(`daily "#+TITLE: Daily Journal\n#+STARTUP: showeverything\n#+HUGO_BASE_DIR: ../\n#+HUGO_SECTION: journal\n#+DATE: %U\n#+FILETAGS: daily")
(`weekly "#+TITLE: Weekly Journal\n#+STARTUP: folded\n#+HUGO_BASE_DIR: ../\n#+HUGO_SECTION: journal\n#+DATE: %U")
(`monthly "#+TITLE: Monthly Journal\n#+STARTUP: folded\n#+HUGO_BASE_DIR: ../\n#+HUGO_SECTION: journal\n#+DATE: %U")
(`yearly "#+TITLE: Yearly Journal\n#+STARTUP: folded\n#+HUGO_BASE_DIR: ../\n#+HUGO_SECTION: journal\n#+DATE: %U"))))))
(use-package org-roam
:straight t
:after org
:config
(org-roam-setup)
;; If using org-roam-protocol
(require 'org-roam-protocol)
:bind
("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)
("C-c n g" . org-roam-graph)
("C-c n i" . org-roam-node-insert)
("C-c n c" . org-roam-capture)
;; Dailies
("C-c n j" . org-roam-dailies-capture-today)
:custom
(org-roam-v2-ack t)
(org-roam-directory (expand-file-name "codes/notes/roam-research-notes-hugo/content-org" "~"))
(org-roam-capture-templates `(("d" "default" plain "%?"
:unnarrowed t
:if-new (file+head "%<%Y%m%d%H%M%S>-${slug}.org"
"#+TITLE: ${title}
#+AUTHOR: Gray King
#+DATE: %U
#+HUGO_BASE_DIR: ../
#+HUGO_SECTION: notes
")))))
(use-package org-roam-ui
:straight
(:host github :repo "org-roam/org-roam-ui" :branch "main" :files ("*.el" "out"))
:after org-roam
;; normally we'd recommend hooking orui after org-roam, but since org-roam does not have
;; a hookable mode anymore, you're advised to pick something yourself
;; if you don't care about startup time, use
;; :hook (after-init . org-roam-ui-mode)
:commands org-roam-ui-mode
:custom
(org-roam-ui-sync-theme t)
(org-roam-ui-follow t)
(org-roam-ui-update-on-save t)
(org-roam-ui-open-on-start t))
(use-package ox-hugo
:straight t
:after (ox org-mode))
;;; (use-package org-superstar
;;; :straight t
;;; :after org
;;; :hook
;;; (org-mode . (lambda () (org-superstar-mode 1))))
(use-package org-modern
:straight
(:host github :repo "minad/org-modern")
:after org
:custom
;; Edit settings
(org-auto-align-tags nil)
;; (org-tags-column 1)
(org-tags-column 0)
(org-catch-invisible-edits 'show-and-error)
(org-special-ctrl-a/e t)
(org-insert-heading-respect-content t)
;; Org styling, hide markup etc.
(org-hide-emphasis-markers t)
(org-pretty-entities t)
;; (org-ellipsis "…")
(org-ellipsis " \u25bc" )
;; Agenda styling
(org-agenda-tags-column 0)
;; (org-agenda-block-separator ?─)
(org-agenda-block-separator "──────────────────────────────────────────────────────────────────────────────────────────────────")
(org-agenda-time-grid
'((daily today require-timed)
(800 1000 1200 1400 1600 1800 2000)
" ┄┄┄┄┄ " "┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄"))
(org-agenda-current-time-string
"⭠ now ─────────────────────────────────────────────────")
:hook
(org-mode . org-modern-mode)
(org-agenda-finalize . org-modern-agenda))
(use-package org-pomodoro
:straight t
:commands org-pomodoro
:hook
(org-pomodoro-finished . (lambda ()
(call-process "terminal-notifier" nil 0 nil
"-message" "Take a break to eat 🍅!"
"-sound" "Pebble"
"-sender" "org.gnu.Emacs")))
(org-pomodoro-short-break-finished . (lambda ()
(call-process "terminal-notifier" nil 0 nil
"-message" "🍅 ready to go!"
"-sound" "Heroine"
"-sender" "org.gnu.Emacs")))
(org-pomodoro-long-break-finished . (lambda ()
(call-process "terminal-notifier" nil 0 nil
"-message" "🍅🍅🍅 ready to go!"
"-sound" "Heroine"
"-sender" "org.gnu.Emacs"))))
(use-package org-fragtog
:straight t
:hook
(org-mode . org-fragtog-mode))
(use-package org-download
:straight t
:after org-roam
:commands (org-download-image org-download-clipboard)
:custom
(org-download-image-dir "images")
:hook
(dired-mode . org-download-enable)
(org-mode . org-download-enable))
(use-package org-krita
:straight
(org-krita :host github :repo "lepisma/org-krita" :files ("*.el" "resources"))
:custom
(org-krita-executable "/Applications/krita.app/Contents/MacOS/krita")
:hook
(org-mode . org-krita-mode))
(use-package org-fc
:straight (:host github :repo "l3kn/org-fc" :files ("*.el" "*.org" "awk"))
:commands
(org-fc-review org-fc-type-normal-init org-fc-review org-fc-review-buffer)
:custom
(org-fc-directories (expand-file-name "codes/notes/roam-research-notes-hugo/flashcards" "~"))
(org-fc-review-history-file (expand-file-name "codes/notes/roam-research-notes-hugo/flashcards/org-fc-reviews.tsv" "~")))
(use-package org-zotxt
:straight (:host github :repo "egh/zotxt-emacs")
:bind
(:map org-mode-map
("C-c z i" . org-zotxt-insert-reference-link)
("C-c z a" . org-zotxt-open-attachment))
:hook
(org-mode . (lambda ()
(org-zotxt-mode)
(org-link-set-parameters "zotero"
:follow #'org-zotxt--link-follow
:export (lambda (path desc format)
(format "%s" desc))))))
(use-package ob-restclient
:straight (:host github :repo "alf/ob-restclient.el")
:hook
(org-mode . (lambda()
(org-babel-do-load-languages
'org-babel-load-languages
'((restclient . t)
(dot . t)
(ein . t))))))
(provide 'init-org)
;;; init-org.el ends here