dotfiles/dot_config/nvim/after/plugin/animate.lua
2026-02-06 09:15:12 +01:00

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 },
})