Added languages

This commit is contained in:
ry
2021-11-15 11:47:56 -08:00
parent 694fab8d25
commit c4aa491c84
5 changed files with 26 additions and 9 deletions

View File

@@ -257,7 +257,10 @@ Org Babel allows us to evaluate source code blocks within org mode. With this fu
'org-babel-load-languages
'((emacs-lisp . t)
(python . t)
(scheme . t)))
(scheme . t)
(javascript . t)
(html . t)
(css . t)))
(push '("conf-unix" . conf-unix) org-src-lang-modes))
@@ -279,8 +282,10 @@ Here we use a package called org-tempo.
(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 '("yml" . "src yaml"))
(add-to-list 'org-structure-template-alist '("scm" . "src scheme")))
(add-to-list 'org-structure-template-alist '("scm" . "src scheme"))
(add-to-list 'org-structure-template-alist '("js" . "src javascript"))
(add-to-list 'org-structure-template-alist '("html" . "src html"))
(add-to-list 'org-structure-template-alist '("css" . "src css")))
#+end_src