Skip to content

Commit

Permalink
org layer: explicitly load org-indent
Browse files Browse the repository at this point in the history
  • Loading branch information
syl20bnr committed Apr 13, 2015
1 parent 4c95d22 commit 8e010e1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions contrib/org/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
org-bullets
org-pomodoro
org-repo-todo
ox-gfm
)
"List of all packages to install and/or initialize. Built-in packages
which require an initialization must be listed explicitly in the list.")
Expand Down Expand Up @@ -68,11 +69,9 @@ which require an initialization must be listed explicitly in the list.")
(kbd "SPC") evil-leader--default-map))))
:config
(progn
(require 'org-install)
(require 'org-indent)
(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)))

)
(define-key global-map "\C-ca" 'org-agenda))))

(defun org/init-org-bullets ()
(use-package org-bullets
Expand Down Expand Up @@ -101,3 +100,7 @@ which require an initialization must be listed explicitly in the list.")
"CT" 'ort/capture-todo-check)
(evil-leader/set-key-for-mode 'org-mode
"mgt" 'ort/goto-todos))))

(defun org/init-ox-gfm ()
(use-package ox-gfm
:defer t))

0 comments on commit 8e010e1

Please sign in to comment.