formatter updates, something for json

This commit is contained in:
Christoph J. Scherr 2024-12-02 23:25:31 +01:00
parent 1e52cce66f
commit 4c827216e2
1 changed files with 7 additions and 1 deletions

View File

@ -32,13 +32,19 @@ return {
}
end,
formatters_by_ft = {
['_'] = { 'prettier' },
lua = { 'stylua' },
json = { 'jq' },
rust = { 'rustfmt' },
c = { 'clang-format' },
cpp = { 'clang-format' },
python = { 'autopep8' },
-- Conform can also run multiple formatters sequentially
-- python = { "isort", "black" },
--
-- You can use a sub-list to tell conform to run *until* a formatter
-- is found.
-- javascript = { { "prettierd", "prettier" } },
javascript = { 'prettierd', 'prettier' },
},
},
},