1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

feat(emacs): finetuned org-babel & structure templates

This commit is contained in:
Ryan Kes 2021-05-19 15:28:20 +02:00
parent 8e307716d9
commit f66df58bb2

View File

@ -323,3 +323,30 @@
(setq (setq
org-agenda-files (directory-files-recursively "~/Documents/org/" "\.org$")) org-agenda-files (directory-files-recursively "~/Documents/org/" "\.org$"))
#+end_src #+end_src
** Configure Babel Languages
To execute or export code in ~org-mode~ code blocks, youll need to set up ~org-babel-load-languages~ for each language youd like to use. [[https://orgmode.org/worg/org-contrib/babel/languages.html][This page]] documents all of the languages that you can use with ~org-babel~.
#+begin_src emacs-lisp
(with-eval-after-load 'org
(org-babel-do-load-languages
'org-babel-load-languages
'((emacs-lisp . t)
(python . t)))
(push '("conf-unix" . conf-unix) org-src-lang-modes))
#+end_src
** Structure Templates
With just a few keystrokes, it is possible to insert empty [[https://orgmode.org/manual/Structure-Templates.html][structural blocks]], such as ~#+BEGIN_SRC~~#+END_SRC~, or to wrap existing text in such a block.
#+begin_src emacs-lisp
(with-eval-after-load 'org
;; This is needed as of Org 9.2
(require 'org-tempo)
(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 '("py" . "src python"))
(add-to-list 'org-structure-template-alist '("ph" . "src php")))
#+end_src