summaryrefslogtreecommitdiffstats
path: root/.emacs.d/jd/jd-org.el
blob: 1126155d525cde90afada3d400d651136eca94b8 (plain)
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
;;; Dotfiles --- Jakub Dlugosz emacs config
;;; Commentary:

;;; Code:

(defvar jd/org-home "~/Documents/Org")
(defvar jd/org-roam-home (concat jd/org-home "/roam"))
(defvar jd/org-roam-agenda (concat jd/org-home "/agenda"))
(defvar jd/org-roam-daily-home (concat jd/org-roam-home "/daily"))

(defun jd/org-mode-init ()
  (org-indent-mode)
  (variable-pitch-mode 1)
  (visual-line-mode 1))

(defun jd-emacs/org-insert-date (&optional date)
  (org-insert-time-stamp (org-read-date nil t (or date "+0d"))))

(use-package org-pomodoro
  :guix-package "emacs-org-pomodoro")

(use-package org-caldav
  :guix-package "emacs-org-caldav"
  :config
  (setq org-caldav-url         "http://jdlugosz.com:5232/jdlugosz"
	org-caldav-calendar-id "841a6259-8fe5-a178-e326-ddbb7c767e22"
	org-caldav-inbox       (concat jd/org-roam-agenda
				       "/main.org")
	org-caldav-files       nil
	org-icalendar-timezone "Europe/Warsaw"))

(use-package org
  :guix-package "emacs-org"
  :pin org
  :commands (org-capture org-agenda)
  :hook (org-mode . jd/org-mode-init)
  :bind
  ("C-c o c" . #'org-capture)
  ("C-c o p" . #'org-mobile-pull)
  ("C-c o P" . #'org-mobile-push)
  ("C-c o a" . #'org-agenda)
  :config
  (setq org-directory (file-truename "~/Documents/Org/"))
  (setq org-mobile-inbox-for-pull (concat org-directory "flagged.org"))
  (setq org-mobile-directory "~/Documents/Org/Mobile/")
  (setq org-agenda-files '("Tasks.org" "Inbox.org" "Habits.org"))
  (setq org-ellipsis " ▾")
  (setq org-agenda-start-with-log-mode t)
  (setq org-log-done 'time)
  (setq org-log-into-drawer t)
  (setq org-return-follows-link t)
  (setq org-capture-templates
	`(("t" "Tasks / Projects")
	  ("tt" "Task" entry (file+olp "Tasks.org" "Inbox")
	   "* TODO %?\n  %t\n  %a\n  %i" :empty-lines 1)
	  ("tT" "Task for tomorow" entry (file+olp "Tasks.org" "Inbox")
	   "* TODO %?\n %t\n  SCHEDULED: %(jd-emacs/org-insert-date \"+1d\")>\n %a\n %i" :empty-lines 1)

	  ("m" "Metrics Capture")
	  ("mm" "Metrics" table-line (file+headline "Metrics.org" "Metrics")
	   "| %U | %^{Weight} | %^{Waist} | %^{Notes} |" :kill-buffer t)
	  ("sh" "School Homework" entry (file+olp "school/todo(jd-emacs/org-insert-date \"1\").org"))))

  (setq org-latex-listings 'minted
	org-latex-packages-alist '(("" "minted"))
	org-latex-pdf-process
	'("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
	  "pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"))
  (require 'org-tempo)
  
  (defun jd/org-font-setup ()
    ;; Replace list hyphen with dot
    (font-lock-add-keywords 'org-mode
			    '(("^ *\\([-]\\) "
			       (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•-"))))))

    ;; Set faces for heading levels
    (dolist (face '((org-level-1 . 1.3)
		    (org-level-2 . 1.2)
		    (org-level-3 . 1.1)
		    (org-level-4 . 1.0)
		    (org-level-5 . 1.0)
		    (org-level-6 . 1.0)
		    (org-level-7 . 1.0)
		    (org-level-8 . 1.0)))
      (set-face-attribute (car face) nil :font "Terminus" :weight 'Bold :height (cdr face)))

    ;; Ensure that anything that should be fixed-pitch in Org files appears that way
    (set-face-attribute 'org-block nil    :font "Terminus" :inherit 'fixed-pitch :height 100)
    (set-face-attribute 'org-table nil    :inherit 'fixed-pitch)
    (set-face-attribute 'org-formula nil  :inherit 'fixed-pitch)
    (set-face-attribute 'org-code nil     :inherit '(shadow fixed-pitch))
    (set-face-attribute 'org-table nil    :font "Terminus" :inherit '(shadow fixed-pitch))
    (set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch))
    (set-face-attribute 'org-special-keyword nil :inherit '(font-lock-comment-face fixed-pitch))
    (set-face-attribute 'org-meta-line nil :inherit '(font-lock-comment-face fixed-pitch))
    (set-face-attribute 'org-checkbox nil  :inherit 'fixed-pitch)
    (set-face-attribute 'line-number nil :inherit 'fixed-pitch)
    (set-face-attribute 'line-number-current-line nil :inherit 'fixed-pitch))

  (with-eval-after-load 'org (jd/org-font-setup))

  (defun jd-emacs/org-timer-stop ()
    (start-process-shell-command "notify-send" nil "notify-send Zakonczono odliczanie"))


  (add-hook 'org-timer-stop-hook #'jd-emacs/org-timer-stop)

  (defun jd/org-tempo-setup ()
    (dolist (template '(("s" . "src")
			("sql" . "src sql")
			("sh" . "src sh")
			("el" . "src emacs-lisp")
			("li" . "src lisp")
			("sc" . "src scheme")
			("ts" . "src typescript")
			("py" . "src python")
			("go" . "src go")
			("yaml" . "src yaml")))
      (add-to-list 'org-structure-template-alist template)))

  (with-eval-after-load 'org-tempo (jd/org-tempo-setup))

  (org-babel-do-load-languages
   'org-babel-load-languages
   '((emacs-lisp . t)
     (python . t)))

  (defun jd/org-babel-tangle-config ()
    (when (string-equal (file-name-directory (buffer-file-name))
			(expand-file-name "~/dotfiles/"))
      ;; Dynamic scoping to the rescue
      (let ((org-confirm-babel-evaluate nil))
	(org-babel-tangle))))

  (add-hook 'org-mode-hook (lambda () (add-hook 'after-save-hook #'jd/org-babel-tangle-config))))

(use-package org-superstar
  :guix-package "emacs-org-superstar"
  :hook (org-mode . org-superstar-mode)
  :init
  (setq org-superstar-special-todo-items t)
  (setq org-superstar-remove-leading-stars t)
  (setq org-superstar-headline-bullets-list '("◉" "○" "●" "○" "●" "○" "●")))

(use-package org-roam
  :guix-package "emacs-org-roam"
  :custom
  (org-roam-directory (file-truename jd/org-roam-home))
  :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))
  :bind-keymap
  ("C-c n d" . org-roam-dailies-map)
  :config
  (defun jd/org-roam-filter-by-tag (tag-name)
    (lambda (node)
      (member tag-name (org-roam-node-tags node))))

  (defun jd/org-roam-list-notes-by-tag (tag-name)
    (mapcar #'org-roam-node-file
	    (seq-filter
	     (jd/org-roam-filter-by-tag tag-name)
	     (org-roam-node-list))))

  (defun jd/org-roam-refreshagenda-list ()
    (interactive)
    (setq org-agenda-files (org-roam-list-files)))

  (setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
  (setq org-roam-capture-templates
	'(("a" "workstuff" plain (file (concat org-roam-directory "/work"))
	   :target (file+head "work/%<%Y%m%d%H%M%S>-${slug}.org"
			      "#+title: ${title}\n")
	   :unnarrowed t)
	  ("b" "research" plain (file "~/Documents/roam/study/templates/research.org")
	   :target (file+head "study/%<%Y%m%d%H%M%S>-${slug}.org"
			      "#+title: ${title}\n")
	   :unnarrowed t)
	  ("s" "School")
	  ("ss" "School General" plain nil
	   :target (file+head
		    "school/%<%Y%m%d%H%M%S>-${slug}.org"
		    "#+title: ${title}\n")
	   :unnarrowed t)
	  ("sp" "Polish Lesson" plain nil
	   :target (file+head
		    "school/polish/%<%Y%m%d%H%M%S>-${slug}.org"
		    "#+title: ${title}\n")
	   :unnarrowed t)
	  ("sw" "Wos Lesson" plain nil
	   :target (file+head
		    "school/wos/%<%Y%m%d%H%M%S>-${slug}.org"
		    "#+title: ${title}\n")
	   :unnarrowed t)
	  ("g" "Guitar" plain nil
	   :target (file+head
		    "guitar/%<%Y%m%d%H%M%S>-${slug}.org"
		    "#+title: ${title}\n")
	   :unnarrowed t)
	  ("d" "default" plain nil
	   :target (file+head "%<%Y%m%d%H%M%S>-${slug}.org"
			      "#+title: ${title}\n")
	   :unnarrowed t)))

  (org-roam-db-autosync-mode))

(use-package ox-pandoc
  :guix-package "emacs-ox-pandoc")

(provide 'jd-org)

;;; jd-org.el ends here