vimPlugins.playground: fix missing dependency

I just spent too much time trying to understand why the query editor woudn't work when the solution was just to install the query grammar, see https://github.com/nvim-treesitter/playground/issues/88#issuecomment-1373019566
This commit is contained in:
Matthieu Coudron
2023-01-06 02:34:26 +01:00
parent fb1cb44b68
commit a674d241fb
@@ -711,6 +711,13 @@ self: super: {
inherit parinfer-rust;
playground = super.playground.overrideAttrs (old: {
dependencies = with self; [
# we need the 'query' grammer to make
(nvim-treesitter.withPlugins (p: [ p.query ]))
];
});
plenary-nvim = super.plenary-nvim.overrideAttrs (old: {
postPatch = ''
sed -Ei lua/plenary/curl.lua \