12 lines
309 B
Lua
12 lines
309 B
Lua
-- English comments only.
|
|
|
|
local ok, animate = pcall(require, "mini.animate")
|
|
if not ok then return end
|
|
|
|
animate.setup({
|
|
-- Keep it subtle: enable cursor + scroll, disable resize/open/close if you want less motion
|
|
resize = { enable = false },
|
|
open = { enable = false },
|
|
close = { enable = false },
|
|
})
|