From 0723f4576918de4cc73a9ce891deb50865c3affd Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 7 Aug 2021 16:43:45 +0200 Subject: [PATCH] Export plantuml images to SVG by default SVG can be viewed by any browser and is not limited by predefined a resolution. This is especially important for big diagrams. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 51ff0bb..4517a7a 100644 --- a/init.el +++ b/init.el @@ -3003,7 +3003,7 @@ With given ARG, display files in `db/important-document-path’." (use-package plantuml-mode :commands (plantuml-mode) - :init (setq plantuml-output-type "png" + :init (setq plantuml-output-type "svg" plantuml-default-exec-mode 'jar plantuml-jar-path "/usr/share/plantuml/plantuml.jar" plantuml-indent-level 2)