mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-30 06:39:56 +02:00
plugins/smear-cursor: init
This commit is contained in:
parent
e59e99314b
commit
8968da1617
3 changed files with 289 additions and 0 deletions
18
plugins/by-name/smear-cursor/default.nix
Normal file
18
plugins/by-name/smear-cursor/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ lib, ... }:
|
||||
lib.nixvim.plugins.mkNeovimPlugin {
|
||||
name = "smear-cursor";
|
||||
packPathName = "smear-cursor.nvim";
|
||||
package = "smear-cursor-nvim";
|
||||
moduleName = "smear_cursor";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue