Bruno BELANYI
eebcc1f0ed
All checks were successful
ci/woodpecker/push/check Pipeline was successful
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
15 lines
426 B
Nix
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 = "";
|
|
})
|
|
];
|
|
});
|
|
}
|