mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
33 lines
483 B
Nix
33 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|