diff options
-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 |