set ess-r-mode to R-mode, auto start winner-mode, auto load some ox pkgs

This commit is contained in:
2023-03-26 12:36:38 +02:00
parent ce2c9354ed
commit 6253368410
9 changed files with 413 additions and 7 deletions

View File

@@ -1354,7 +1354,7 @@ used as a communication channel."
(if caption-above-p caption "")))))))
(use-package ox-md
:defer t) ;; will be loaded via `org-export-backends' see above inside `org'
:after (ox)) ;; not loaded via `org-export-backends' (inside `org')
(use-package ox-publish
:defer t
@@ -1363,7 +1363,7 @@ used as a communication channel."
(setq org-publish-project-alist my-org-publish-project-alist))
(use-package ox-reveal
:defer t ;; will be loaded via `org-export-backends' see above inside `org'
:after (ox) ;; not loaded via `org-export-backends' (inside `org')
:config
;; #+REVEAL_EXTRA_CSS:
(setq org-reveal-extra-css (concat "file://" (expand-file-name config-dir) "scripts/flipcard/flipcard.css")) ;; multiple files seperated with \n
@@ -1373,7 +1373,7 @@ used as a communication channel."
(setq org-reveal-single-file t))
(use-package ox-tufte ;; https://melpa.org/#/ox-tufte
:defer t ;; will be loaded via `org-export-backends' see above inside `org'
:after (ox) ;; not loaded via `org-export-backends' (inside `org')
:config
(defun org-tufte-src-block (src-block _contents info)
"Transcode a SRC-BLOCK element from Org to HTML.