Merge pull request #129519 from michaeladler/fix/neogit-missing-deps

neogit: add missing dependency on plenary.nvim
This commit is contained in:
Jörg Thalheim 2021-07-08 05:56:42 +01:00 committed by GitHub
commit 40a0f81aeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -395,6 +395,10 @@ self: super: {
dependencies = with self; [ ultisnips ];
});
neogit = super.neogit.overrideAttrs (old: {
dependencies = with self; [ plenary-nvim ];
});
nvim-lsputils = super.nvim-lsputils.overrideAttrs (old: {
dependencies = with self; [ popfix ];
});