aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform
diff options
context:
space:
mode:
Diffstat (limited to 'lua/conform')
-rw-r--r--lua/conform/formatters/gleam.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/conform/formatters/gleam.lua b/lua/conform/formatters/gleam.lua
new file mode 100644
index 0000000..a03afac
--- /dev/null
+++ b/lua/conform/formatters/gleam.lua
@@ -0,0 +1,9 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://github.com/gleam-lang/gleam",
+ description = "⭐️ A friendly language for building type-safe, scalable systems!",
+ },
+ command = "gleam",
+ args = { "format", "--stdin" },
+}