Setup PlantUML mode in Emacs to use the local server

This commit is contained in:
Ohad Livne 2025-12-18 23:15:19 +02:00
parent 5f99d941ab
commit a1afcdc335
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

@ -186,6 +186,17 @@
(use-package org-contacts
:after org-contrib)
(use-package deflate
:ensure (:repo "https://github.com/skuro/deflate"))
(use-package plantuml-mode
:ensure (:repo "https://github.com/skuro/plantuml-mode")
:custom
(plantuml-default-exec-mode 'server)
(plantuml-server-url "http://localhost:8080")
:init
(add-to-list 'auto-mode-alist '("\\.plantuml\\'" . plantuml-mode))
)
(use-package age
:custom
(age-default-identity "~/.age/key")