aboutsummaryrefslogtreecommitdiffstats
path: root/doom
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-03-18 17:43:39 +0000
committerYann Herklotz <git@yannherklotz.com>2020-03-18 17:43:39 +0000
commit3b55435803691baad50e6d921649eb24d84aede7 (patch)
treedbab8d029422cf68d9110d176596bab68ab1d94c /doom
parent208df59a0a4545c2da0ac75a2cb513ebbd391b86 (diff)
downloaddotfiles-3b55435803691baad50e6d921649eb24d84aede7.tar.gz
dotfiles-3b55435803691baad50e6d921649eb24d84aede7.zip
Remove use-package call to load emacs faster
Diffstat (limited to 'doom')
-rw-r--r--doom/config.el28
1 files changed, 13 insertions, 15 deletions
diff --git a/doom/config.el b/doom/config.el
index c572a88..9ebeafa 100644
--- a/doom/config.el
+++ b/doom/config.el
@@ -234,22 +234,20 @@
(zettelkasten-mode t))
;; Publishing projects, this one is for the zettelkasten
-(use-package! ox-publish
- :config
- (setq org-publish-project-alist
- '(("zettelkasten"
- :base-directory "~/Dropbox/org/zettelkasten/"
- :base-extension "org"
- :publishing-directory "~/Dropbox/org/zettelkasten/html/"
- :publishing-function org-html-publish-to-html
- :headline-levels 4
- :auto-preamble t
- :with-toc nil
- :section-numbers nil
- :html-head "<link rel=\"stylesheet\" href=\"css/fonts.css\" />
+(setq org-publish-project-alist
+ '(("zettelkasten"
+ :base-directory "~/Dropbox/org/zettelkasten/"
+ :base-extension "org"
+ :publishing-directory "~/Dropbox/org/zettelkasten/html/"
+ :publishing-function org-html-publish-to-html
+ :headline-levels 4
+ :auto-preamble t
+ :with-toc nil
+ :section-numbers nil
+ :html-head "<link rel=\"stylesheet\" href=\"css/fonts.css\" />
<link rel=\"stylesheet\" href=\"css/default.css\" />"
- )))
- (add-hook 'org-export-before-processing-hook 'zettelkasten-org-export-preprocessor))
+ )))
+(add-hook 'org-export-before-processing-hook 'zettelkasten-org-export-preprocessor)
;; Mac configuration
(when (eq system-type 'darwin)