gippities

This commit is contained in:
Chris Cochrun 2023-05-05 13:10:25 -05:00
parent d4b0d1cb4b
commit 95c9621034
2 changed files with 24 additions and 0 deletions

View file

@ -1646,6 +1646,7 @@ Spectacle.js is another beautiful slideshow builder that org can export to using
) )
#+end_src #+end_src
*** ox-zola *** 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. 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 #+begin_src emacs-lisp
@ -1656,6 +1657,21 @@ I'm going to start a website for my own ramblings, tutorials and links. To do th
org-hugo-section "blog")) org-hugo-section "blog"))
#+end_src #+end_src
*** AI
GPTEL is a package that uses chatGPT to get some text generation in org-mode
#+begin_src emacs-lisp
(use-package gptel
:ensure t
:commands (gptel-send
gptel)
:config
(setq gptel-default-mode 'org-mode
gptel-api-key "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"))
#+end_src
#+begin_ai
is emacs the best?
#+end_ai
** Emoji ** Emoji
In order to render color emojis I'll use =unicode-fonts=. In order to render color emojis I'll use =unicode-fonts=.
#+begin_src emacs-lisp #+begin_src emacs-lisp

View file

@ -1328,6 +1328,14 @@ All my (performant) foldings needs are met between this and `org-show-subtree'
(setq org-hugo-base-dir "/home/chris/dev/cochrun.xyz" (setq org-hugo-base-dir "/home/chris/dev/cochrun.xyz"
org-hugo-section "blog")) org-hugo-section "blog"))
(use-package gptel
:ensure t
:commands (gptel-send
gptel)
:config
(setq gptel-default-mode 'org-mode
gptel-api-key "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"))
(use-package unicode-fonts (use-package unicode-fonts
:ensure t :ensure t
:config :config