diff options
author | Alan Pearce | 2015-11-16 09:59:00 +0100 |
---|---|---|
committer | Alan Pearce | 2015-11-16 09:59:00 +0100 |
commit | 038456def8db8c79d36a0332a13e88b2366a2860 (patch) | |
tree | 7be7878c66ad3868587279d6b2e2299389f61344 /tag-emacs/emacs.d | |
parent | 60872a8c3737b285e0281454e8c44b057bd92a0c (diff) | |
download | nixfiles-038456def8db8c79d36a0332a13e88b2366a2860.tar.lz nixfiles-038456def8db8c79d36a0332a13e88b2366a2860.tar.zst nixfiles-038456def8db8c79d36a0332a13e88b2366a2860.zip |
Emacs: Add org-journal binding
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index e17eaa79..75811afb 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -1549,11 +1549,12 @@ with R or something. I can use this to keep a journal. I should use it. #+BEGIN_SRC emacs-lisp -(req-package org-journal - :require org - :defer t - :config (progn - (setq org-journal-date-format "%A, %d %B %Y"))) + (req-package org-journal + :require org + :bind ("s-j" . org-journal-new-entry) + :defer 20 + :config (progn + (setq org-journal-date-format "%A, %d %B %Y"))) #+END_SRC **** org-mobile |