summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/configs/conform.lua
blob: 35ba6cf7b027a5cd1a26048baf6af8877b4fd434 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local options = {
  formatters_by_ft = {
    lua = { "stylua" },
    -- css = { "prettier" },
    -- html = { "prettier" },
  },

  -- format_on_save = {
  --   -- These options will be passed to conform.format()
  --   timeout_ms = 500,
  --   lsp_fallback = true,
  -- },
}

return options