about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorGaetan Lepage <gaetan@glepage.com>2024-04-04 10:31:41 +0200
committerMatthieu Coudron <886074+teto@users.noreply.github.com>2024-04-05 13:25:55 +0200
commit9ba5c067907974bb1db1c43c755564156ff16b7f (patch)
tree81562517f11bd5f93b291511259f8cb5ee5cf15a /pkgs/applications/editors
parentb7359cf7106c8eaf85fc73db04baf8cbc8be0718 (diff)
vimPlugins.nvim-dap-ui: add dependencies nvim-dap and nvim-nio
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vim/plugins/overrides.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix
index 5f74ad2bc33c5..17d0214df96af 100644
--- a/pkgs/applications/editors/vim/plugins/overrides.nix
+++ b/pkgs/applications/editors/vim/plugins/overrides.nix
@@ -997,6 +997,13 @@
     dependencies = with self; [ nvim-dap ];
   };
 
+  nvim-dap-ui = super.nvim-dap-ui.overrideAttrs {
+    dependencies = with self; [ nvim-dap nvim-nio ];
+
+    doInstallCheck = true;
+    nvimRequireCheck = "dapui";
+  };
+
   nvim-lsputils = super.nvim-lsputils.overrideAttrs {
     dependencies = with self; [ popfix ];
   };