Added mini animations

This commit is contained in:
Warwick 2024-06-20 11:24:26 +01:00
parent ed0b93e421
commit f56d4d8283

View file

@ -89,7 +89,20 @@ local plugins = {
},
},
-- Lightmode switcher
'eliseshaffer/darklight.nvim'
'eliseshaffer/darklight.nvim',
-- Mini tools
{
'echasnovski/mini.animate',
version = false,
config = function()
local animate = require('mini.animate')
animate.setup({
scroll = { timing = animate.gen_timing.linear({ duration = 50, unit = 'total' }) },
cursor = { enable = false }
})
end
}
}
local opts = {}