Update org package

This commit is contained in:
Marcus Kammer 2021-12-17 19:23:22 +01:00
parent d2857c809d
commit 7ea48e83b9
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -6,6 +6,14 @@
(use-package ox-reveal)
(use-package org
:ensure nil
:hook (org-mode . turn-on-auto-fill)
:init (org-clock-persistence-insinuate)
:bind
(("C-c l" . org-store-link)
("C-c a" . org-agenda)
("C-c c" . org-capture)
("C-c b" . org-switchb))
:init
(org-babel-lob-ingest "~/.emacs.d/library-of-babel.org")
:custom
@ -194,11 +202,3 @@ Excludes the heading and any child subtrees."
most-positive-fixnum))))
(message "Copied: %s" contents)
(kill-new contents)))))
(add-hook 'org-mode-hook 'turn-on-auto-fill)
(global-set-key (kbd "C-c l") 'org-store-link)
(global-set-key (kbd "C-c a") 'org-agenda)
(global-set-key (kbd "C-c c") 'org-capture)
(global-set-key (kbd "C-c b") 'org-switchb)
(org-clock-persistence-insinuate)