1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-20 06:02:38 +00:00
dotfiles/.config/nvim/lua/plugins/lsp/conform.lua

27 lines
601 B
Lua
Raw Normal View History

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,
})