Overhaul the `org-babel-load-languages' customization
This commit is contained in:
parent
bba8b405d2
commit
03a07a16fd
13
README.org
13
README.org
@ -1950,21 +1950,24 @@ backward compatibility. See table [[tab:org-latex-class-tag-placeholder]] and ty
|
||||
#+begin_src emacs-lisp
|
||||
(with-eval-after-load 'org
|
||||
(custom-set-variables
|
||||
'(org-babel-load-languages '((C . t)
|
||||
`(org-babel-load-languages
|
||||
(delq nil '((C . t)
|
||||
(calc . t)
|
||||
(dot . t)
|
||||
,(when (fboundp 'grapviz-dot-mode) '(dot . t))
|
||||
(emacs-lisp . t)
|
||||
(eshell . t)
|
||||
,(when (fboundp 'fennel-mode) '(fennel . t))
|
||||
(fortran . t)
|
||||
(gnuplot . t)
|
||||
,(when (fboundp 'gnuplot-mode) '(gnuplot . t))
|
||||
(js . t)
|
||||
(latex . t)
|
||||
(lisp . t)
|
||||
(maxima . t)
|
||||
,(when (fboundp 'lua-mode) '(lua . t))
|
||||
,(when (fboundp 'maxima-mode) '(maxima . t))
|
||||
(org . t)
|
||||
(perl . t)
|
||||
(python . t)
|
||||
(shell . t)))
|
||||
(shell . t))))
|
||||
'(org-export-backends '(ascii beamer html icalendar latex odt texinfo))
|
||||
'(org-file-apps '((auto-mode . emacs)
|
||||
(directory . emacs)
|
||||
|
Loading…
Reference in New Issue
Block a user