Initial commit

This commit is contained in:
2026-03-22 18:04:35 +01:00
commit 1d5ca0aa29
74 changed files with 2537 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
return {
"stevearc/conform.nvim",
config = function()
local conform = require("conform")
conform.setup {
formatters_by_ft = {
lua = { "stylua" },
python = { "isort", "black", lsp_format = "fallback" },
gotmpl = { "djlint" }
},
format_on_save = {
timeout_ms = 500,
lsp_format = "fallback"
}
}
conform.formatters.djlint = {
append_args = { "--max-blank-lines", "5" }
}
end
}