feat: add plugin smear cursor
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run Details

This commit is contained in:
Sven Vogel 2024-12-09 11:52:32 +01:00
parent ca424f5fcf
commit 56d4b2d2b6
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
--
-- Neovim plugin to animate the cursor with a smear effect in all terminals.
--
-- Source: https://github.com/sphamba/smear-cursor.nvim
-- ..............................................
--
-- Author: Sven Vogel
-- Created: 09.12.2024
-- Edited: 09.12.2024
--
-- ==============================================
return {
{
"sphamba/smear-cursor.nvim",
opts = {
stiffness = 0.7, -- 0.6 [0, 1]
trailing_stiffness = 0.4, -- 0.3 [0, 1]
distance_stop_animating = 0.4, -- 0.1 > 0
hide_target_hack = true, -- true boolean
}
}
}