nix-community.nixvim/plugins/by-name/vimade/default.nix

34 lines
606 B
Nix
Raw Normal View History

2025-05-01 00:40:07 +02:00
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "vimade";
2025-06-18 02:42:47 +03:00
description = "Vimade let's you dim, fade, tint, animate, and customize colors in your windows and buffers for Neovim.";
2025-05-01 00:40:07 +02:00
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;
};
};
};
}