diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-17 10:54:15 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-17 10:54:15 -0500 |
commit | a8e023ae15c9a93055ae4b5aa2bd4e28f8cc56a8 (patch) | |
tree | afc2bdc8a87162d46d2dee3d654381aba4dbc045 | |
parent | ac410bfd4b9ac0c148101909264d8af42f1f55e2 (diff) |
Add: PlantUML support for org babel
-rw-r--r-- | init-el.org | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/init-el.org b/init-el.org index ff00226..1835b11 100644 --- a/init-el.org +++ b/init-el.org @@ -315,6 +315,7 @@ So, to use this file for the very first time you must (package-install 'graphviz-dot-mode) (package-install 'ob-haxe) +(package-install 'plantuml-mode) (add-hook 'org-mode-hook (lambda () (org-toggle-inline-images))) @@ -325,12 +326,16 @@ So, to use this file for the very first time you must (lisp . t) (haxe . t) (dot . t) + (plantuml . t) (C . t) (shell . t))) (add-to-list 'org-src-lang-modes '("dot" . graphviz-dot)) +(setq org-plantuml-jar-path + "/usr/share/plantuml/plantuml.jar") + #+end_src |