mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
colorschemes/gruvbox: use simpler syntax
This commit is contained in:
parent
e7700cea5e
commit
185ddb62de
1 changed files with 50 additions and 56 deletions
|
@ -4,34 +4,18 @@
|
|||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports =
|
||||
[
|
||||
(
|
||||
helpers.neovim-plugin.mkNeovimPlugin config {
|
||||
}:
|
||||
helpers.neovim-plugin.mkNeovimPlugin config {
|
||||
name = "gruvbox";
|
||||
namespace = "colorschemes";
|
||||
originalName = "gruvbox.nvim";
|
||||
defaultPackage = pkgs.vimPlugins.gruvbox-nvim;
|
||||
|
||||
settingsExample = {
|
||||
terminal_colors = true;
|
||||
palette_overrides = {
|
||||
dark1 = "#323232";
|
||||
dark2 = "#383330";
|
||||
dark3 = "#323232";
|
||||
bright_blue = "#5476b2";
|
||||
bright_purple = "#fb4934";
|
||||
};
|
||||
};
|
||||
|
||||
maintainers = [lib.maintainers.GaetanLepage];
|
||||
}
|
||||
)
|
||||
]
|
||||
|
||||
# Introduced January 31 2024
|
||||
# TODO remove in early March 2024.
|
||||
++ (
|
||||
imports =
|
||||
map
|
||||
(
|
||||
optionName:
|
||||
|
@ -61,6 +45,16 @@
|
|||
"improvedWarnings"
|
||||
"transparentBg"
|
||||
"trueColor"
|
||||
]
|
||||
);
|
||||
];
|
||||
|
||||
settingsExample = {
|
||||
terminal_colors = true;
|
||||
palette_overrides = {
|
||||
dark1 = "#323232";
|
||||
dark2 = "#383330";
|
||||
dark3 = "#323232";
|
||||
bright_blue = "#5476b2";
|
||||
bright_purple = "#fb4934";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue