mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
32 lines
483 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|