mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
plugins/mini-hues: init
This commit is contained in:
parent
4cc7ab6c6a
commit
f195e33607
2 changed files with 33 additions and 0 deletions
17
plugins/by-name/mini-hues/default.nix
Normal file
17
plugins/by-name/mini-hues/default.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, ... }:
|
||||
lib.nixvim.plugins.mkNeovimPlugin {
|
||||
name = "mini-hues";
|
||||
moduleName = "mini.hues";
|
||||
|
||||
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
||||
|
||||
settingsExample = {
|
||||
background = "#351721";
|
||||
foreground = "#cdc4c6";
|
||||
n_hues = 8;
|
||||
saturation = "medium";
|
||||
accent = "bg";
|
||||
plugins.default = true;
|
||||
autoadjust = true;
|
||||
};
|
||||
}
|
||||
16
tests/test-sources/plugins/by-name/mini-hues/default.nix
Normal file
16
tests/test-sources/plugins/by-name/mini-hues/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
defaults = {
|
||||
plugins.mini-hues = {
|
||||
enable = true;
|
||||
settings = {
|
||||
background = "#351721";
|
||||
foreground = "#cdc4c6";
|
||||
n_hues = 8;
|
||||
saturation = "medium";
|
||||
accent = "bg";
|
||||
plugins.default = true;
|
||||
autoadjust = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue