conform.lua 354 B

123456789101112131415161718
  1. local options = {
  2. formatters_by_ft = {
  3. lua = { "stylua" },
  4. python = { "black" },
  5. -- css = { "prettier" },
  6. -- html = { "prettier" },
  7. },
  8. -- Also need uncomment lines in plugins/init.lua
  9. format_on_save = {
  10. -- These options will be passed to conform.format()
  11. timeout_ms = 500,
  12. lsp_fallback = true,
  13. },
  14. }
  15. require("conform").setup(options)