From f3fb4aacbbcd62f5ad88b691048a3931c1ef3d6b Mon Sep 17 00:00:00 2001 From: PerilousBooklet Date: Fri, 16 May 2025 20:58:16 +0200 Subject: [PATCH] Added support for PlantUML with plantuml_lsp. --- config.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/config.lua b/config.lua index 959ad34..035c8ae 100644 --- a/config.lua +++ b/config.lua @@ -577,6 +577,18 @@ lspconfig.perlnavigator = add_lsp { } } +---# PlantUML - plantuml_lsp +--- __Status__: Works (no diagnostics) +--- __Site__: https://github.com/ptdewey/plantuml-lsp +--- __Installation__: https://github.com/ptdewey/plantuml-lsp?tab=readme-ov-file#installation +lspconfig.plantuml_lsp = add_lsp { + name = "plantuml_lsp", + language = "plantuml", + file_patterns = { "%.puml$", "%.plantuml$", "%.pu$", "%.iuml$", "%.wsd$" }, + command = { "plantuml-lsp" }, + verbose = false +} + ---# python-language-server --- __Status__: Works (deprecated in favor of python-lsp-server) --- __Site__: https://github.com/palantir/python-language-server