mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
22 lines
407 B
Nix
22 lines
407 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "gruvbox";
|
|
isColorscheme = true;
|
|
package = "gruvbox-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
terminal_colors = true;
|
|
palette_overrides = {
|
|
dark1 = "#323232";
|
|
dark2 = "#383330";
|
|
dark3 = "#323232";
|
|
bright_blue = "#5476b2";
|
|
bright_purple = "#fb4934";
|
|
};
|
|
};
|
|
}
|