dotfiles

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

commit 31444a338db26de8111979698bd1d85c6a78a569
parent b79f12e997962118f837f89daa9eada35260b30a
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Sun, 21 Apr 2024 19:53:00 +0200

emacs: add org export backend

Diffstat:
Memacs/config.org | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -1563,7 +1563,7 @@ Install Org and require additional components that I use. (org-link-elisp-confirm-function #'y-or-n-p) (org-link-elisp-skip-confirm-regexp "^org-noter$") (org-clock-sound (concat user-emacs-directory "notification.wav")) - (org-export-backends '(ascii html icalendar latex md odt org)) + (org-export-backends '(ascii html icalendar latex md odt org pandoc)) (org-catch-invisible-edits 'show-and-error "Sometimes when text is folded away, I might accidentally edit text inside of it. This option prevents that. I wanted to do 'smart', but that has a 'fixme' so it might change in the future...Instead, show what's being edited, but don't perform the edit.") (org-src-tab-acts-natively t "a tab in a code block indents the code as it should")