adding hugo and zola ox
This commit is contained in:
parent
198978811c
commit
3c9e2e9d73
2 changed files with 34 additions and 19 deletions
19
README.org
19
README.org
|
@ -2106,7 +2106,9 @@ Optional BACKEND must be `re-reveal' or a backend derived from it."
|
|||
|
||||
*** ox-zola
|
||||
I'm going to start a website for my own ramblings, tutorials and links. To do this I'll likely use Zola since it's built in Rust.
|
||||
#+begin_src emacs-lisp :tangle no
|
||||
#+begin_src emacs-lisp
|
||||
(use-package ox-hugo)
|
||||
|
||||
(use-package ox-zola
|
||||
:load-path "ox-zola/"
|
||||
:config
|
||||
|
@ -3688,6 +3690,16 @@ Let's make sure docker is capable of using tramp.
|
|||
#+end_src
|
||||
|
||||
Still need dockerfile-mode in order to be able to edit dockerfiles.
|
||||
*** Just
|
||||
Let's use just-mode
|
||||
#+begin_src emacs-lisp
|
||||
(use-package just-mode
|
||||
:mode ("\\.just\\'" . just-mode))
|
||||
#+end_src
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package justl)
|
||||
#+end_src
|
||||
|
||||
*** Fish
|
||||
Fish is my preferred shell and made some scripts in it so I keep this to be able to edit those scripts.
|
||||
|
@ -3711,7 +3723,10 @@ It's probably smart to have markdown.
|
|||
"C-j" 'markdown-next-visible-heading
|
||||
"M-j" 'markdown-move-down
|
||||
"C-k" 'markdown-previous-visible-heading
|
||||
"M-k" 'markdown-move-up))
|
||||
"M-k" 'markdown-move-up
|
||||
"C-<return>" 'markdown-insert-list-item)
|
||||
(general-def 'insert markdown-mode-map
|
||||
"C-<return>" 'markdown-insert-list-item))
|
||||
#+end_src
|
||||
|
||||
*** QML
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue