Change cursor animation.

This commit is contained in:
Henry Denny 2024-02-22 15:15:52 +00:00
parent 5653ca8088
commit c25d514787
1 changed files with 5 additions and 1 deletions

View File

@ -1,9 +1,13 @@
return {
"echasnovski/mini.nvim",
version = "*",
config = function ()
config = function()
local animate = require('mini.animate')
animate.setup({
cursor = {
timing = animate.gen_timing.exponential({ duration = 250, unit = 'total' }),
path = animate.gen_path.angle(),
},
scroll = {
timing = animate.gen_timing.linear({ duration = 100, unit = 'total' }),
},