From 7b2b95b3082227a8f2f34f4797f6e0649027ed0f Mon Sep 17 00:00:00 2001 From: eriedaberrie Date: Fri, 10 Feb 2023 13:39:46 -0800 Subject: [PATCH] Add org-babel languages --- init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.el b/init.el index fa178ed..953879d 100644 --- a/init.el +++ b/init.el @@ -407,6 +407,11 @@ ;; NixOS minimal LaTeX setup (org-latex-compiler "lualatex") (org-preview-latex-default-process 'dvisvgm) + (org-babel-load-languages '((emacs-lisp . t) + (ruby . t) + (python . t) + (shell . t) + (C . t))) :config (setq org-format-latex-options (plist-put org-format-latex-options :scale 1.1)) (add-to-list 'org-modules 'org-tempo))