Update org package
This commit is contained in:
parent
d2857c809d
commit
7ea48e83b9
1 changed files with 8 additions and 8 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue