nix/overlay/Nvim.nix

14 lines
274 B
Nix
Raw Normal View History

{
__findFile,
...
}: {
# SEE: https://github.com/neovim/neovim/issues/22478
nixpkgs.overlays = [(final: prev: {
neovim-unwrapped = prev.neovim-unwrapped.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [
<patch/nvim/PressEnter.patch>
];
});
})];
}