aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2021-02-28 19:59:02 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2021-02-28 19:59:02 +0900
commitf120dc9a5d6a445dd92fb6cf40f30ae8d47333f3 (patch)
tree552d2741e6de3968536931d844690f208002bef1
parent6378304decc1bfeba1a7cb88eac3afd6415918c2 (diff)
Update journal settings
-rw-r--r--.emacs16
1 files changed, 2 insertions, 14 deletions
diff --git a/.emacs b/.emacs
index 0b65824..a342c3e 100644
--- a/.emacs
+++ b/.emacs
@@ -55,9 +55,8 @@
("a" "記事" entry (file+headline "" "")
"* %?\n %u\n %a"
:empty-lines 1)
- ("j" "Journal entry" plain (function org-journal-find-location)
- "** %(format-time-string org-journal-time-format)%?"
- :empty-lines 1)))
+ ("j" "日記" entry (file+datetree "~/org/journal.org")
+ "* %?\n %U\n")))
(setq org-todo-keywords
'((sequence "TODO(t)" "WAIT(w)" "|" "DONE(d)" "SOMEDAY(s)" "CANCELED(c)")))
(org-babel-do-load-languages
@@ -70,17 +69,6 @@
(require 'org-bullets)
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
-;;; org-journal
-(setq org-journal-dir "~/org/journal/")
-(setq org-journal-date-format "%Y年%m月%d日 (%a)")
-(defun org-journal-find-location ()
- ;; Open today's journal, but specify a non-nil prefix argument in order to
- ;; inhibit inserting the heading; org-capture will insert the heading.
- (org-journal-new-entry t)
- (unless (eq org-journal-file-type 'daily)
- (org-narrow-to-subtree))
- (goto-char (point-max)))
-
;;; SKK
(setq default-input-method "japanese-skk")