1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-20 09:19:41 +01:00
nixvim/plugins/by-name/smear-cursor/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

18 lines
487 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "smear-cursor";
package = "smear-cursor-nvim";
moduleName = "smear_cursor";
description = "A Neovim plugin that adds a smear effect to the cursor when moving quickly.";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsOptions = import ./settings-options.nix lib;
settingsExample = {
stiffness = 0.8;
trailing_stiffness = 0.5;
distance_stop_animating = 0.5;
hide_target_hack = false;
};
}