org: Merge config into use-package block
To have one single org-mode configuration block move the `org-directory` configuration into the use-package block.
This commit is contained in:
parent
5a55a3f3f3
commit
d2792a680d
1 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,4 @@
|
|||
(use-package org
|
||||
:ensure t
|
||||
:init (setq org-export-backends '(ascii html icalendar latex odt beamer)))
|
||||
|
||||
(setq org-directory "~/org")
|
||||
:init (setq org-export-backends '(ascii html icalendar latex odt beamer))
|
||||
:config (setq org-directory "~/org"))
|
||||
|
|
Loading…
Reference in a new issue