feat(nvim): add plantuml support
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m5s

This commit is contained in:
Price Hiller 2024-06-22 06:22:05 -05:00
parent 6b5270d843
commit 870758fc6e
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
local plantuml_fts = { "plantuml", "puml", "uml", "pu", "iuml" }
return {
{
"aklt/plantuml-syntax",
config = false,
ft = plantuml_fts,
},
{
"weirongxu/plantuml-previewer.vim",
dependencies = {
"tyru/open-browser.vim",
},
ft = plantuml_fts,
cmd = {
"PlantumlOpen",
"PlantumlStop",
"PlantumlSave",
},
config = false,
},
}

View File

@ -30,6 +30,8 @@ in
packages =
with pkgs;
[
plantuml
graphviz
gcolor3
typescript
deno