AutoYADM commit: 2024-12-23 04:45:02

This commit is contained in:
Daniel Fichtinger 2024-12-23 04:45:02 -05:00
parent 11aa98ab29
commit 8f091ec76e

View file

@ -4,6 +4,20 @@ return {
toggle = {
notify = false,
},
bigfile = {
notify = true, -- show notification when big file detected
size = 1.5 * 1024 * 1024, -- 1.5MB
-- Enable or disable features when big file detected
---@param ctx {buf: number, ft:string}
setup = function(ctx)
vim.cmd([[NoMatchParen]])
-- Snacks.util.wo(0, { foldmethod = "manual", statuscolumn = "", conceallevel = 0 })
-- vim.b.minianimate_disable = true
vim.schedule(function()
vim.bo[ctx.buf].syntax = ctx.ft
end)
end,
},
zen = {
notify = false,
toggles = {