summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-12-28 11:34:24 -0500
committerGitHub <noreply@github.com>2022-12-28 11:34:24 -0500
commitfab9a5b367008dea29dc5c9d829a07f2b20773ea (patch)
tree682a4c0f5eb1b0111f501c27be7aeb1c89dd1b26
parent408657d9a29df379f2bd54a447852e3e5f32c85b (diff)
parent1f573777e36bb3c9e29d47f3c2f010e1efbddb03 (diff)
downloadnixpkgs-fab9a5b367008dea29dc5c9d829a07f2b20773ea.tar
nixpkgs-fab9a5b367008dea29dc5c9d829a07f2b20773ea.tar.gz
nixpkgs-fab9a5b367008dea29dc5c9d829a07f2b20773ea.tar.bz2
nixpkgs-fab9a5b367008dea29dc5c9d829a07f2b20773ea.tar.lz
nixpkgs-fab9a5b367008dea29dc5c9d829a07f2b20773ea.tar.xz
nixpkgs-fab9a5b367008dea29dc5c9d829a07f2b20773ea.tar.zst
nixpkgs-fab9a5b367008dea29dc5c9d829a07f2b20773ea.zip
Merge pull request #208117 from teto/fix-vim-deps
fix vim deps
-rw-r--r--pkgs/applications/editors/vim/plugins/overrides.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix
index 08b8ae20412..140a3b317ce 100644
--- a/pkgs/applications/editors/vim/plugins/overrides.nix
+++ b/pkgs/applications/editors/vim/plugins/overrides.nix
@@ -693,6 +693,10 @@ self: super: {
     configurePhase = "cd vim";
   });
 
+  orgmode = super.orgmode.overrideAttrs (old: {
+    dependencies = with self; [ (nvim-treesitter.withPlugins (p: [ p.org ])) ];
+  });
+
   inherit parinfer-rust;
 
   plenary-nvim = super.plenary-nvim.overrideAttrs (old: {
@@ -715,7 +719,10 @@ self: super: {
 
   # needs  "http" and "json" treesitter grammars too
   rest-nvim = super.rest-nvim.overrideAttrs (old: {
-    dependencies = with self; [ plenary-nvim ];
+    dependencies = with self; [
+      plenary-nvim
+      (nvim-treesitter.withPlugins (p: [ p.http p.json ]))
+    ];
   });
 
   skim = buildVimPluginFrom2Nix {