From bdbbf0044c1f730af1765aac5822c278ad428372 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 4 May 2023 09:30:28 -0500 Subject: [PATCH] adding kdesrc-build alias and ox-zola --- README.org | 10 ++++++++++ init.el | 7 +++++++ 2 files changed, 17 insertions(+) diff --git a/README.org b/README.org index b820d5a0..15368cf3 100644 --- a/README.org +++ b/README.org @@ -1646,6 +1646,15 @@ Spectacle.js is another beautiful slideshow builder that org can export to using ) #+end_src +*** 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 +(use-package ox-zola + :after 'ox-hugo + :config + + ) +#+end_src ** Emoji In order to render color emojis I'll use =unicode-fonts=. @@ -3543,6 +3552,7 @@ Let's add our own eshell prompt. and set the password cache to a significantly h ("ytd" "yt-dlp -o ~/Videos/%(title)s.%(ext)s $1") ("nupg" "upgrade-nix") ("nupd" "update-nix") + ("ksb" "/home/chris/dev/kde/src/kdesrc-build/kdesrc-build") ("ws" "rsync -avzP public/ chris@staff.tfcconnection.org:tfcconnection") ("wttr" "curl wttr.in/@home.cochrun.xyz"))) diff --git a/init.el b/init.el index 99f3e532..7915afc8 100644 --- a/init.el +++ b/init.el @@ -1322,6 +1322,12 @@ All my (performant) foldings needs are met between this and `org-show-subtree' org-re-reveal-mobile-app t) ) +(use-package ox-zola + :after 'ox-hugo + :config + + ) + (use-package unicode-fonts :ensure t :config @@ -2642,6 +2648,7 @@ targets." ("ytd" "yt-dlp -o ~/Videos/%(title)s.%(ext)s $1") ("nupg" "upgrade-nix") ("nupd" "update-nix") + ("ksb" "/home/chris/dev/kde/src/kdesrc-build/kdesrc-build") ("ws" "rsync -avzP public/ chris@staff.tfcconnection.org:tfcconnection") ("wttr" "curl wttr.in/@home.cochrun.xyz")))