dotfiles/.config/nvim/lua/plugins/formatting.lua

15 lines
296 B
Lua
Raw Normal View History

2023-10-04 22:22:31 +02:00
return {
{
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
2024-01-10 22:12:00 +01:00
["cue"] = { { "cue_fmt" } },
2023-10-29 09:48:27 +01:00
["html"] = { { "prettierd", "prettier" } },
["sass"] = { { "prettierd", "prettier" } },
2023-10-04 22:22:31 +02:00
["proto"] = { { "buf" } },
["terraform"] = { { "terraform_fmt" } },
},
},
},
}