nix-config/overlays/gruvbox-nvim-delimiters/generated.nix
Bruno BELANYI eebcc1f0ed
All checks were successful
ci/woodpecker/push/check Pipeline was successful
overlays: add 'gruvbox-nvim-delimiters'
To fix [1] and [2] until the plug-in gets bumped.

[1]: https://github.com/ellisonleao/gruvbox.nvim/issues/335
[2]: https://github.com/ellisonleao/gruvbox.nvim/issues/340
2024-05-20 15:13:46 +00:00

15 lines
426 B
Nix

{ fetchpatch, ... }:
_final: prev: {
gruvbox-nvim = prev.gruvbox-nvim.overrideAttrs (oa: {
patches = (oa.patches or [ ]) ++ [
# https://github.com/ellisonleao/gruvbox.nvim/pull/319
(fetchpatch {
name = "add-Delimiter-highlight-group.patch";
url = "https://github.com/ellisonleao/gruvbox.nvim/commit/20f90039564b293330bf97acc36dda8dd9e721a0.patch";
hash = "";
})
];
});
}