fixing the issues on rendering

This commit is contained in:
2026-02-02 17:08:00 -05:00
parent c915096a4a
commit 1d1448b4c9
3 changed files with 8 additions and 15 deletions

View File

@@ -6,27 +6,19 @@ return {
return {
cursor = {
enable = true,
timing = animate.gen_timing.linear({ duration = 80, unit = "total" }),
timing = animate.gen_timing.linear({ duration = 50, unit = "total" }),
},
scroll = {
enable = true,
timing = animate.gen_timing.linear({ duration = 100, unit = "total" }),
enable = false, -- Disabled for performance
},
resize = {
enable = true,
timing = animate.gen_timing.linear({ duration = 80, unit = "total" }),
enable = false, -- Disabled for performance
},
open = {
enable = true,
timing = animate.gen_timing.linear({ duration = 80, unit = "total" }),
winconfig = animate.gen_winconfig.wipe({ direction = "from_edge" }),
winblend = animate.gen_winblend.linear({ from = 80, to = 100 }),
enable = false, -- Disabled for performance
},
close = {
enable = true,
timing = animate.gen_timing.linear({ duration = 80, unit = "total" }),
winconfig = animate.gen_winconfig.wipe({ direction = "to_edge" }),
winblend = animate.gen_winblend.linear({ from = 100, to = 80 }),
enable = false, -- Disabled for performance
},
}
end,