neovim-config/lua/configs/conform.lua

16 lines
311 B
Lua
Raw Normal View History

2024-03-09 16:03:44 +00:00
local options = {
formatters_by_ft = {
lua = { "stylua" },
2024-03-18 01:04:01 +00:00
-- css = { "prettier" },
-- html = { "prettier" },
2024-03-09 16:03:44 +00:00
},
2024-03-18 01:04:01 +00:00
-- format_on_save = {
-- -- These options will be passed to conform.format()
-- timeout_ms = 500,
-- lsp_fallback = true,
-- },
2024-03-09 16:03:44 +00:00
}
require("conform").setup(options)