formatted

This commit is contained in:
2025-12-11 00:21:33 +01:00
parent 126ee70634
commit c18e540835
20 changed files with 520 additions and 762 deletions
+4 -6
View File
@@ -1,10 +1,8 @@
local autocmd = vim.api.nvim_create_autocmd
autocmd("BufWritePre", {
callback = function()
local ok = pcall(function()
vim.cmd "undojoin"
end)
vim.cmd "Neoformat"
end,
callback = function()
local ok = pcall(function() vim.cmd "undojoin" end)
vim.cmd "Neoformat"
end
})