diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index 153e23a..d6f3d4a 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -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 = {}