gippities
This commit is contained in:
parent
d4b0d1cb4b
commit
95c9621034
16
README.org
16
README.org
|
@ -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
|
||||||
|
|
8
init.el
8
init.el
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue