Add ox-hugo and deft
This commit is contained in:
@@ -514,6 +514,26 @@ Here we define templates we want to use to quickly capture stuff and automatical
|
|||||||
))
|
))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** Exports using Hugo
|
||||||
|
Using ~ox-hugo~ a directory of org files can autmatically be extported to markdown files.
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package ox-hugo
|
||||||
|
:ensure t ;Auto-install the package from Melpa (optional)
|
||||||
|
:after ox)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
[[https://ox-hugo.scripter.co/][Documentation]]
|
||||||
|
|
||||||
|
* Deft
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package deft
|
||||||
|
:bind ("<f8>" . deft)
|
||||||
|
:commands (deft)
|
||||||
|
:config (setq deft-directory "~/Notes"
|
||||||
|
deft-recursive t
|
||||||
|
deft-extensions '("md" "org")
|
||||||
|
deft-default-extension "org"))
|
||||||
|
#+END_SRC
|
||||||
* Treemacs
|
* Treemacs
|
||||||
Treemacs makes navigating folders and files much easier. This is the default config from [[https://github.com/Alexander-Miller/treemacs][the offical repository]] as a base, with slight modifications to suite my config.
|
Treemacs makes navigating folders and files much easier. This is the default config from [[https://github.com/Alexander-Miller/treemacs][the offical repository]] as a base, with slight modifications to suite my config.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user