mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-22 19:17:34 +00:00
[emacs] Fix org roam export configuration
Moving from :config to :init means the hook won't be added until the package is actually loaded, i.e. after org-roam.
This commit is contained in:
parent
dc31eaa0f5
commit
a4c432f511
1 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,9 @@
|
|||
|
||||
* Look And Feel
|
||||
** Theme
|
||||
I'm feeling the gruvbox theme lately.
|
||||
I'm feeling the shades of purple theme lately.
|
||||
#+begin_src emacs-lisp
|
||||
(setq doom-theme 'doom-laserwave)
|
||||
(setq doom-theme 'doom-shades-of-purple)
|
||||
#+end_src
|
||||
** Default font
|
||||
#+begin_src emacs-lisp
|
||||
|
@ -898,7 +898,7 @@ https://orgroam.com
|
|||
#+begin_src emacs-lisp
|
||||
(use-package! org-roam-export
|
||||
:after org-roam
|
||||
:config
|
||||
:init
|
||||
(add-hook 'org-export-before-processing-hook #'org-roam-export-preprocessor))
|
||||
#+end_src
|
||||
**** Org Roam Bibtex
|
||||
|
|
Loading…
Reference in a new issue