mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-14 15:51:13 +00:00
27 lines
601 B
Lua
27 lines
601 B
Lua
require("conform").setup({
|
|
formatters_by_ft = {
|
|
go = { "goimports", "gofumpt" },
|
|
javascript = { "prettier" },
|
|
json = { "prettier" },
|
|
lua = { "stylua" },
|
|
markdown = { "prettier" },
|
|
python = { "isort", "black" },
|
|
typescript = { "prettier" },
|
|
yaml = { "prettier" },
|
|
},
|
|
formatters = {
|
|
{
|
|
command = "black",
|
|
args = { "--line-length", "100" },
|
|
},
|
|
},
|
|
format_on_save = function(bufnr)
|
|
local filetypes = { "go", "typescript", "lua" }
|
|
if not vim.tbl_contains(filetypes, vim.bo[bufnr].filetype) then
|
|
return
|
|
end
|
|
|
|
return { timeout_ms = 500, lsp_fallback = false }
|
|
end,
|
|
})
|