Merge pull request #238632 from linsui/clipboard

vimPlugins.clipboard-image-nvim: fix for neovim 9.0
This commit is contained in:
figsoda 2023-06-19 19:22:50 -04:00 committed by GitHub
commit 882f4293ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,6 +168,12 @@ self: super: {
'';
});
clipboard-image-nvim = super.clipboard-image-nvim.overrideAttrs (old: {
postPatch = ''
sed -i -e 's/require "health"/vim.health/' lua/clipboard-image/health.lua
'';
});
cmp-clippy = super.cmp-clippy.overrideAttrs (old: {
dependencies = with self; [ nvim-cmp plenary-nvim ];
});