(nvim) use biome to format .json if available

This commit is contained in:
jc 2025-03-04 17:57:24 -05:00
commit bc89283e6d
No known key found for this signature in database

View file

@ -6,6 +6,8 @@ local formatters_by_ft = {
typescriptreact = { "prettier", "biome" }, typescriptreact = { "prettier", "biome" },
css = { "prettier", "biome" }, css = { "prettier", "biome" },
markdown = { "prettier", "biome" }, markdown = { "prettier", "biome" },
jsonc = { "prettier", "biome" },
json = { "prettier", "biome" },
go = { "gofmt" }, go = { "gofmt" },
python = { "autopep8" }, python = { "autopep8" },
yaml = { "yamlfmt" }, yaml = { "yamlfmt" },