aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-lang.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/init-lang.el')
-rw-r--r--.emacs.d/lisp/init-lang.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-lang.el b/.emacs.d/lisp/init-lang.el
index b96fd92..ee24d39 100644
--- a/.emacs.d/lisp/init-lang.el
+++ b/.emacs.d/lisp/init-lang.el
@@ -11,8 +11,9 @@
org-plantuml-default-exec-mode 'jar)
(when (gx/maybe-require-package 'plantuml-mode)
(add-to-list 'auto-mode-alist '("\\.plantuml\\'" . plantuml-mode))
- (unless (file-readable-p plantuml-jar-path)
- (plantuml-download-jar))
+ (with-eval-after-load 'plantuml
+ (unless (file-readable-p plantuml-jar-path)
+ (plantuml-download-jar)))
(with-eval-after-load 'org
(add-to-list 'org-src-lang-modes '("plantuml" . plantuml))))