about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorHaseeb Majid <hello@haseebmajid.dev>2023-09-22 13:19:50 +0100
committerGitHub <noreply@github.com>2023-09-22 14:19:50 +0200
commit78c95f38a179e85516d319f6bc34e057c2ff4a5f (patch)
tree5166b476e3a49b59f03d708b021510b8de88c8f2 /pkgs/applications/editors
parent4f605ed6971580900628026d22e6c0f82b18c2f5 (diff)
vimPlugins.nvim-navbuddy: add dependencies (#256584)
* vimPlugins.nvim-navbuddy: add dependencies

* Update pkgs/applications/editors/vim/plugins/overrides.nix

Co-authored-by: figsoda <figsoda@pm.me>

---------

Co-authored-by: figsoda <figsoda@pm.me>
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vim/plugins/overrides.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix
index 942de58bed188..5540cadc41468 100644
--- a/pkgs/applications/editors/vim/plugins/overrides.nix
+++ b/pkgs/applications/editors/vim/plugins/overrides.nix
@@ -862,6 +862,10 @@ self: super: {
     dontBuild = true;
   };
 
+  nvim-navbuddy = super.nvim-navbuddy.overrideAttrs {
+    dependencies = with self; [ nui-nvim nvim-lspconfig nvim-navic ];
+  };
+
   vim-mediawiki-editor = super.vim-mediawiki-editor.overrideAttrs {
     passthru.python3Dependencies = [ python3.pkgs.mwclient ];
   };