summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters
diff options
context:
space:
mode:
authorEirik Rolland Enger <engeir@pm.me>2024-06-08 14:31:19 +0200
committerGitHub <noreply@github.com>2024-06-08 08:31:19 -0400
commit1743ee6f9fc52825bdee9493e246876bed591bc1 (patch)
tree6302a990c76236de61e6f19edf4542fe6e5096d2 /lua/conform/formatters
parent069e971295a34a810484b7b2ef54b3c735214181 (diff)
feat(latex): support llf (#446)
* feat(latex): support llf Signed-off-by: engeir <engeir@pm.me> * Update llf.lua --------- Signed-off-by: engeir <engeir@pm.me> Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com>
Diffstat (limited to 'lua/conform/formatters')
-rw-r--r--lua/conform/formatters/llf.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/conform/formatters/llf.lua b/lua/conform/formatters/llf.lua
new file mode 100644
index 0000000..ca9aa96
--- /dev/null
+++ b/lua/conform/formatters/llf.lua
@@ -0,0 +1,9 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://repo.or.cz/llf.git",
+ description = "A LaTeX reformatter / beautifier.",
+ },
+ command = "llf",
+ stdin = true,
+}