dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 3ae8f78470f928f2df8c4a29eb0b6c5242344e38
parent df6cae177635392c7dcf052d99d8878a91854610
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Tue,  9 Aug 2022 23:57:52 +0200

emacs: org-download and org-sticky-header

Diffstat:
Memacs/config.org | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -951,6 +951,21 @@ Maybe check [[https://old.reddit.com/r/orgmode/comments/8rl8ep/making_orgcaldav_ #+begin_src emacs-lisp (use-package org-roam-ui) #+end_src +** org-download +Drag-and-drop images to Emacs Org mode. + +#+begin_src emacs-lisp + (use-package org-download + :config + (setq org-download-method 'attach + org-download-backend 'curl)) +#+end_src +** org-sticky-header +Displays in the header-line the Org heading for the node that’s at the top of the window. + +#+begin_src emacs-lisp + (use-package org-sticky-header) +#+end_src ** org publishing I decided, after trying many different thing, to settle on org-publish. Markdown export didn't let me add a preamble, which Zola requires; there's no proper backend for Zola.