about summary refs log tree commit diff
path: root/pkgs/applications/editors/vim
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2024-05-13 10:39:13 -0400
committerBernardo Meurer <bernardo@meurer.org>2024-05-13 10:39:13 -0400
commit9b2e62243919d17b76d7a708e691cf4086e78802 (patch)
treeaf8d30d9d74de67f232e3f07a01480e40a7fef41 /pkgs/applications/editors/vim
parenta0321d0d340cceb9c59a62bbf6510a37c2c7ee6d (diff)
vimPlugins.luasnip: add jsregexp dependency
Without this, checkhealth reports warnings of missing functionality
Diffstat (limited to 'pkgs/applications/editors/vim')
-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 c38f517d73698..c3711bd412fed 100644
--- a/pkgs/applications/editors/vim/plugins/overrides.nix
+++ b/pkgs/applications/editors/vim/plugins/overrides.nix
@@ -839,6 +839,10 @@
     dependencies = with self; [ plenary-nvim ];
   };
 
+  luasnip = super.luasnip.overrideAttrs {
+    dependencies = with self; [ luaPackages.jsregexp ];
+  };
+
   magma-nvim-goose = buildVimPlugin {
     pname = "magma-nvim-goose";
     version = "2023-03-13";