vimPlugins.{vim-speeddating,vim-surround,vim-unimpaired}: add dependency vim-repeat
This commit is contained in:
parent
435032e8c1
commit
07f392cd0c
1 changed files with 12 additions and 0 deletions
|
@ -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 ];
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue