nix-community.nixvim/plugins/by-name/vimade/default.nix
2025-05-01 00:40:14 +02:00

32 lines
483 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "vimade";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
fadelevel = 0.7;
recipe = [
"duo"
{ animate = true; }
];
tint = {
bg = {
rgb = [
255
255
255
];
intensity = 0.1;
};
fg = {
rgb = [
255
255
255
];
intensity = 0.1;
};
};
};
}