mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
19 lines
399 B
Nix
19 lines
399 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "mini-hues";
|
|
moduleName = "mini.hues";
|
|
isColorscheme = true;
|
|
colorscheme = null;
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
settingsExample = {
|
|
background = "#351721";
|
|
foreground = "#cdc4c6";
|
|
n_hues = 8;
|
|
saturation = "medium";
|
|
accent = "bg";
|
|
plugins.default = true;
|
|
autoadjust = true;
|
|
};
|
|
}
|