1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-26 20:21:03 +01:00

plugins/tiny-glimmer-nvim: init

This commit is contained in:
Arne 2025-11-21 21:36:01 +01:00 committed by Gaétan Lepage
parent 318f27bf4d
commit 416997150b
2 changed files with 195 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "tiny-glimmer";
package = "tiny-glimmer-nvim";
maintainers = [ lib.maintainers.arne-zillhardt ];
settingsExample = {
refresh_interval_ms = 5;
overwrite = {
yank.default_animation = "rainbow";
paste.enabled = false;
};
animations = {
pulse = {
max_duration = 400;
min_duration = 200;
chars_for_max_duration = 10;
};
rainbow.chars_for_max_duration = 10;
};
};
}