123456789101112131415161718 |
- local options = {
- formatters_by_ft = {
- lua = { "stylua" },
- python = { "black" },
- -- css = { "prettier" },
- -- html = { "prettier" },
- },
- -- Also need uncomment lines in plugins/init.lua
- format_on_save = {
- -- These options will be passed to conform.format()
- timeout_ms = 500,
- lsp_fallback = true,
- },
- }
- require("conform").setup(options)
|