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:
parent
318f27bf4d
commit
416997150b
2 changed files with 195 additions and 0 deletions
23
plugins/by-name/tiny-glimmer/default.nix
Normal file
23
plugins/by-name/tiny-glimmer/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue