dotfiles/.config/nvim/lua/plugins/conform.lua

10 lines
188 B
Lua
Raw Normal View History

2024-03-17 12:32:47 +00:00
require("conform").setup({
formatters_by_ft = {
python = { "black" },
javascript = { "prettierd" },
markdown = { "mdformat" },
go = { "gofmt" },
json = {"jq"}
2024-03-30 16:08:40 +00:00
}
2024-03-17 12:32:47 +00:00
})