-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
138 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
return { | ||
"sphamba/smear-cursor.nvim", | ||
opts = { | ||
-- How fast the smear's head moves towards the target. | ||
-- 0: no movement, 1: instantaneous, default: 0.6 | ||
stiffness = 0.7, | ||
|
||
-- How fast the smear's tail moves towards the head. | ||
-- 0: no movement, 1: instantaneous, default: 0.3 | ||
trailing_stiffness = 0.4, | ||
|
||
-- How much the tail slows down when getting close to the head. | ||
-- 0: no slowdown, more: more slowdown, default: 0.1 | ||
trailing_exponent = 0.2, | ||
|
||
-- Stop animating when the smear's tail is within this distance (in characters) from the target. | ||
-- Default: 0.1 | ||
distance_stop_animating = 0.3, | ||
} | ||
} |