From e8a7cd432d7542e20afebc4334e2ac2f4e47b922 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 7 Dec 2025 22:56:30 +0000 Subject: [PATCH] vimPlugins.opencode-nvim: add curl and opencode to runtime dependencies --- pkgs/applications/editors/vim/plugins/overrides.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index d9cf9dfcab1b..50455ce44408 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -71,6 +71,8 @@ pandoc, # nvim-tinygit gitMinimal, + # opencode-nvim, + opencode, # Preview-nvim dependencies md-tui, # sidekick-nvim dependencies @@ -2869,6 +2871,13 @@ assertNoAdditions { }; }); + opencode-nvim = super.opencode-nvim.overrideAttrs { + runtimeDeps = [ + curl + opencode + ]; + }; + # The plugin depends on either skim-vim or fzf-vim, but we don't want to force the user so we # avoid choosing one of them and leave it to the user openscad-nvim = super.openscad-nvim.overrideAttrs {