22 lines
650 B
EmacsLisp
22 lines
650 B
EmacsLisp
;;; init-diary.el --- Diary settings -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; org-journal for diary
|
|
(use-package org-journal
|
|
:ensure t
|
|
:init
|
|
;; Change default prefix key; needs to be set before loading org-journal
|
|
(setq org-journal-prefix-key "C-c j ")
|
|
:config
|
|
(setq org-journal-dir "~/org/journal/"
|
|
org-journal-date-format "%A, %d %B %Y"
|
|
org-journal-file-format "%Y-%m-W%W.org"
|
|
org-journal-file-type 'weekly))
|
|
|
|
(provide 'init-diary)
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; init-diary.el ends here
|