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:
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user