Use `mini.animate` module.

This commit is contained in:
Henry Denny 2024-01-26 17:46:12 +00:00
parent a9e26f3040
commit 855305572d
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
return {
"echasnovski/mini.nvim",
version = "*",
config = function ()
local animate = require('mini.animate')
animate.setup({
scroll = {
timing = animate.gen_timing.linear({ duration = 100, unit = 'total' }),
},
})
end
}