|
|
@@ -31,9 +31,9 @@
|
|
|
|
|
|
(defconst chicken-dotfiles-packages
|
|
|
'(
|
|
|
- org-mode
|
|
|
+ org
|
|
|
org-agenda
|
|
|
- org-bullet
|
|
|
+ org-bullets
|
|
|
)
|
|
|
"The list of Lisp packages required by the chicken-dotfiles layer.
|
|
|
|
|
|
@@ -63,15 +63,15 @@ installed using the Emacs package manager.
|
|
|
recipe. See: https://github.com/milkypostman/melpa#recipe-format"
|
|
|
)
|
|
|
|
|
|
-(defun chicken-dotfiles/init-org-bullet()
|
|
|
- (use-package org-bullet
|
|
|
+(defun chicken-dotfiles/post-init-org-bullets()
|
|
|
+ (use-package org-bullets
|
|
|
:defer t
|
|
|
:init
|
|
|
(setq org-bullets-bullet-list '("◉" "○" "⬡" "⬢" "■" "□" "◈" "◇"))
|
|
|
)
|
|
|
)
|
|
|
|
|
|
-(defun chicken-dotfiles/init-org-agenda()
|
|
|
+(defun chicken-dotfiles/post-init-org-agenda()
|
|
|
(use-package org-agenda
|
|
|
:defer t
|
|
|
:init
|
|
|
@@ -84,8 +84,8 @@ recipe. See: https://github.com/milkypostman/melpa#recipe-format"
|
|
|
)
|
|
|
)
|
|
|
|
|
|
-(defun chicken-dotfiles/init-org-mode()
|
|
|
- (use-package org-mode
|
|
|
+(defun chicken-dotfiles/post-init-org()
|
|
|
+ (use-package org
|
|
|
:defer t
|
|
|
:init
|
|
|
(setq org-cycle-level-faces nil)
|