empty autocmds

This commit is contained in:
Joost Agterhoek 2025-07-09 11:36:05 +02:00
parent e39e3836e5
commit d0c0452376

7
lua/autocmds.lua Normal file
View File

@ -0,0 +1,7 @@
-- conform
vim.api.nvim_create_autocmd("BufWritePre", {
pattern = "*",
callback = function(args)
require("conform").format({ bufnr = args.buf })
end,
})