plugins/vimade: init

This commit is contained in:
Gaetan Lepage 2025-05-01 00:40:07 +02:00
parent 913a3521ab
commit 6297f4c01a
2 changed files with 178 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ 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;
};
};
};
}