2022-09-18 11:19:23 +01:00
|
|
|
{
|
2023-02-20 11:42:13 +01:00
|
|
|
lib,
|
|
|
|
...
|
2024-02-14 11:04:31 +01:00
|
|
|
}:
|
2024-09-01 12:52:28 +01:00
|
|
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
2024-02-14 11:04:31 +01:00
|
|
|
name = "gruvbox";
|
2024-03-12 22:30:45 +01:00
|
|
|
isColorscheme = true;
|
2024-02-14 11:04:31 +01:00
|
|
|
originalName = "gruvbox.nvim";
|
2024-09-02 14:05:11 +01:00
|
|
|
package = "gruvbox-nvim";
|
2024-02-14 11:04:31 +01:00
|
|
|
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
|
|
|
|
# Introduced January 31 2024
|
|
|
|
# TODO remove in early March 2024.
|
2024-01-31 10:07:27 +01:00
|
|
|
imports =
|
2024-02-14 11:04:31 +01:00
|
|
|
map
|
|
|
|
(
|
|
|
|
optionName:
|
|
|
|
lib.mkRemovedOptionModule [
|
|
|
|
"colorschemes"
|
|
|
|
"gruvbox"
|
|
|
|
optionName
|
2024-08-22 09:24:17 -05:00
|
|
|
] "Please use `colorschemes.gruvbox.settings.${lib.nixvim.toSnakeCase optionName}` instead."
|
2024-02-14 11:04:31 +01:00
|
|
|
)
|
2024-01-31 10:07:27 +01:00
|
|
|
[
|
2024-02-14 11:04:31 +01:00
|
|
|
"italics"
|
|
|
|
"bold"
|
|
|
|
"underline"
|
|
|
|
"undercurl"
|
|
|
|
"contrastDark"
|
|
|
|
"contrastLight"
|
|
|
|
"highlightSearchCursor"
|
|
|
|
"numberColumn"
|
|
|
|
"signColumn"
|
|
|
|
"colorColumn"
|
|
|
|
"vertSplitColor"
|
|
|
|
"italicizeComments"
|
|
|
|
"italicizeStrings"
|
|
|
|
"invertSelection"
|
|
|
|
"invertSigns"
|
|
|
|
"invertIndentGuides"
|
|
|
|
"invertTabline"
|
|
|
|
"improvedStrings"
|
|
|
|
"improvedWarnings"
|
|
|
|
"transparentBg"
|
|
|
|
"trueColor"
|
|
|
|
];
|
2022-09-18 11:19:23 +01:00
|
|
|
|
2024-02-14 11:04:31 +01:00
|
|
|
settingsExample = {
|
|
|
|
terminal_colors = true;
|
|
|
|
palette_overrides = {
|
|
|
|
dark1 = "#323232";
|
|
|
|
dark2 = "#383330";
|
|
|
|
dark3 = "#323232";
|
|
|
|
bright_blue = "#5476b2";
|
|
|
|
bright_purple = "#fb4934";
|
|
|
|
};
|
|
|
|
};
|
2020-12-30 01:05:51 +00:00
|
|
|
}
|