This commit is contained in:
opalvault
2022-06-29 18:57:04 -07:00
parent 28d005594c
commit 4a166cdeb5
2 changed files with 16 additions and 2 deletions

View File

@@ -170,7 +170,12 @@
(add-to-list 'org-structure-template-alist '("sh" . "src shell"))
(add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp"))
(add-to-list 'org-structure-template-alist '("sql" . "src sql"))
(add-to-list 'org-structure-template-alist '("py" . "src python")))
(add-to-list 'org-structure-template-alist '("py" . "src python"))
;; add default arguments to use when evaluating a source block
(add-to-list 'org-babel-default-header-args:python
'(:results . "output")
'(:noweb . "yes")))
;; (use-package mu4e
;; :config

View File

@@ -212,9 +212,18 @@ Creates margins in Org mode to make it more pleasant to look at.
(add-to-list 'org-structure-template-alist '("sh" . "src shell"))
(add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp"))
(add-to-list 'org-structure-template-alist '("sql" . "src sql"))
(add-to-list 'org-structure-template-alist '("py" . "src python")))
(add-to-list 'org-structure-template-alist '("py" . "src python"))
;; add default arguments to use when evaluating a source block
(add-to-list 'org-babel-default-header-args:python
'(:results . "output")
'(:noweb . "yes")))
#+end_src
#+RESULTS:
: ((:results . output))
** Email (mu4e)
Not using this as much atm.