Merge pull request #1785 from rgrinberg/org-journal-feature
lang/org: add +journal feature (org-journal)
This commit is contained in:
commit
4aff103770
3 changed files with 23 additions and 1 deletions
14
modules/lang/org/contrib/journal.el
Normal file
14
modules/lang/org/contrib/journal.el
Normal 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))
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue