Browse Source

Fixed part of the init

Florian Dormont 7 years ago
parent
commit
ec026d7984
2 changed files with 8 additions and 7 deletions
  1. 1 0
      layers.el
  2. 7 7
      packages.el

+ 1 - 0
layers.el

@@ -0,0 +1 @@
+(configuration-layer/declare-layer '(org org-bullets org-agenda org-babel))

+ 7 - 7
packages.el

@@ -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)