nix-community.nixvim/plugins/colorschemes/gruvbox-material-nvim.nix
Matt Sturgeon 346ebc9c18 colorschemes/gruvbox-material: rename to gruvbox-material-nvim
This will allow later adding a `gruvbox-material` plugin for the non-lua
plugin.
2025-08-06 17:48:56 +00:00

40 lines
1 KiB
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "gruvbox-material-nvim";
isColorscheme = true;
colorscheme = "gruvbox-material";
moduleName = "gruvbox-material";
packPathName = "gruvbox-material.nvim";
package = "gruvbox-material-nvim";
maintainers = [ lib.maintainers.f4z3r ];
settingsExample = {
italics = true;
contrast = "medium";
comments = {
italics = true;
};
background = {
transparent = false;
};
float = {
force_background = false;
};
signs = {
force_background = false;
};
customize = lib.nixvim.nestedLiteralLua ''
function(g, o)
local colors = require("gruvbox-material.colors").get(vim.o.background, "medium")
if g == "CursorLineNr" then
o.link = nil -- wipe a potential link, which would take precedence over other
-- attributes
o.fg = colors.orange -- or use any color in "#rrggbb" hex format
o.bold = true
end
return o
end
'';
};
}