summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins/overrides.nix
diff options
context:
space:
mode:
authoroxalica <oxalicc@pm.me>2021-06-17 01:33:13 +0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-06-16 13:01:37 -0700
commit07f392cd0c12354a45f565ee5e5f445bfa97ff90 (patch)
treecdecb91b30f8bbaf6457008e9cd8f80523bfccf2 /pkgs/misc/vim-plugins/overrides.nix
parent435032e8c17fbf842d4fff23d3e06d1803e2e001 (diff)
downloadnixpkgs-07f392cd0c12354a45f565ee5e5f445bfa97ff90.tar
nixpkgs-07f392cd0c12354a45f565ee5e5f445bfa97ff90.tar.gz
nixpkgs-07f392cd0c12354a45f565ee5e5f445bfa97ff90.tar.bz2
nixpkgs-07f392cd0c12354a45f565ee5e5f445bfa97ff90.tar.lz
nixpkgs-07f392cd0c12354a45f565ee5e5f445bfa97ff90.tar.xz
nixpkgs-07f392cd0c12354a45f565ee5e5f445bfa97ff90.tar.zst
nixpkgs-07f392cd0c12354a45f565ee5e5f445bfa97ff90.zip
vimPlugins.{vim-speeddating,vim-surround,vim-unimpaired}: add dependency vim-repeat
Diffstat (limited to 'pkgs/misc/vim-plugins/overrides.nix')
-rw-r--r--pkgs/misc/vim-plugins/overrides.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index 20130402373..0901531a8aa 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -755,6 +755,10 @@ self: super: {
     dependencies = with self; [ vim-addon-mw-utils tlib_vim ];
   });
 
+  vim-speeddating = super.vim-speeddating.overrideAttrs (old: {
+    dependencies = with self; [ vim-repeat ];
+  });
+
   vim-stylish-haskell = super.vim-stylish-haskell.overrideAttrs (old: {
     postPatch = old.postPatch or "" + ''
       substituteInPlace ftplugin/haskell/stylish-haskell.vim --replace \
@@ -763,6 +767,14 @@ self: super: {
     '';
   });
 
+  vim-surround = super.vim-surround.overrideAttrs (old: {
+    dependencies = with self; [ vim-repeat ];
+  });
+
+  vim-unimpaired = super.vim-unimpaired.overrideAttrs (old: {
+    dependencies = with self; [ vim-repeat ];
+  });
+
   vim-wakatime = super.vim-wakatime.overrideAttrs (old: {
     buildInputs = [ python ];
   });