🐛 fix(nvim): taplo is now the toml formatter for conform.nvim

This commit is contained in:
Sergio Laín 2024-01-07 14:51:09 +01:00
parent fbe14666da
commit 4cab75b85b
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -62,6 +62,14 @@ return {
},
},
},
{
"stevearc/conform.nvim",
opts = function(_, opts)
opts.formatters_by_ft.toml = opts.formatters_by_ft.toml or {}
table.insert(opts.formatters_by_ft.toml, "taplo")
return opts
end,
},
{
"luckasRanarison/nvim-devdocs",
optional = true,