2025-01-03 22:47:45 +01:00
|
|
|
{ lib, ... }:
|
|
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
|
|
name = "smear-cursor";
|
|
|
|
packPathName = "smear-cursor.nvim";
|
|
|
|
package = "smear-cursor-nvim";
|
|
|
|
moduleName = "smear_cursor";
|
2025-06-18 02:42:47 +03:00
|
|
|
description = "A Neovim plugin that adds a smear effect to the cursor when moving quickly.";
|
2025-01-03 22:47:45 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|