1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-02-22 22:28:00 +00:00
dotfiles/.config/nvim/lua/plugins/mini-animate.lua

35 lines
840 B
Lua

local mouse_scrolled = false
for _, scroll in ipairs({ "Up", "Down" }) do
local key = "<ScrollWheel" .. scroll .. ">"
vim.keymap.set({ "", "i" }, key, function()
mouse_scrolled = true
return key
end, { expr = true })
end
vim.api.nvim_create_autocmd({ "FileType" }, {
pattern = { "grug-far", "ministarter", "neo-tree" },
callback = function()
vim.b.minianimate_disable = true
end,
})
local animate = require("mini.animate")
animate.setup({
resize = {
timing = animate.gen_timing.linear({ duration = 50, unit = "total" }),
},
scroll = {
timing = animate.gen_timing.linear({ duration = 150, unit = "total" }),
subscroll = animate.gen_subscroll.equal({
predicate = function(total_scroll)
if mouse_scrolled then
mouse_scrolled = false
return false
end
return total_scroll > 1
end,
}),
},
})