blob: a16e525643938256fc8d41c685b88bc74d3e2d7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(setq
my-org-agenda-files '("~/org/")
my-org-agenda-custom-commands
'(("x" agenda)
("y" agenda*)
("w" todo "WAITING")
("W" todo-tree "WAITING")
)
my-org-journal-file-type 'yearly
my-org-journal-dir "~/org/journal/"
my-org-journal-file-format "%Y.org"
my-org-journal-time-prefix "* "
my-org-journal-time-format ""
my-org-refile-path "~/refile.org"
my-org-roam-directory "~/org/roam/"
my-org-agenda-private-local-path "/tmp/example.ics"
my-org-agenda-private-remote-path "/sshx:user@host:example.ics"
)
(provide 'rul-config-org)
|