Merge pull request #1785 from rgrinberg/org-journal-feature

lang/org: add +journal feature (org-journal)
This commit is contained in:
Henrik Lissner 2019-09-19 12:57:48 -04:00 committed by GitHub
commit 4aff103770
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 1 deletions

View file

@ -0,0 +1,14 @@
;;; lang/org/contrib/journal.el -*- lexical-binding: t; -*-
;;;###if (featurep! +journal)
(use-package! org-journal
:defer t
:config
(map! :map org-journal-search-mode-map
:localleader
"n" #'org-journal-search-next
"p" #'org-journal-search-prev)
(map! :map org-journal-mode-map
:localleader
"n" #'org-journal-open-next-entry
"p" #'org-journal-open-previous-entry))

View file

@ -49,3 +49,6 @@
(package! centered-window :recipe (:host github :repo "anler/centered-window-mode"))
(package! org-tree-slide)
(package! ox-reveal))
(when (featurep! +journal)
(package! org-journal))