treewide (cleaning): helpers.vim-plugin -> lib.nixvim.vim-plugin

This commit is contained in:
Gaetan Lepage 2024-12-15 20:28:52 +01:00 committed by nix-infra-bot
parent e54833d2f7
commit 78e295fa41
35 changed files with 36 additions and 36 deletions

View file

@ -4,7 +4,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "bufdelete";
packPathName = "bufdelete.nvim";
package = "bufdelete-nvim";

View file

@ -34,7 +34,7 @@ let
};
};
in
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "codeium-vim";
packPathName = "codeium.vim";
globalPrefix = "codeium_";

View file

@ -3,7 +3,7 @@
helpers,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "commentary";
packPathName = "vim-commentary";
package = "vim-commentary";

View file

@ -5,8 +5,8 @@
...
}:
with lib;
with helpers.vim-plugin;
helpers.vim-plugin.mkVimPlugin {
with lib.nixvim.vim-plugin;
lib.nixvim.vim-plugin.mkVimPlugin {
name = "copilot-vim";
packPathName = "copilot.vim";
globalPrefix = "copilot_";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "emmet";
packPathName = "emmet-vim";

View file

@ -3,7 +3,7 @@
helpers,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "endwise";
packPathName = "vim-endwise";
package = "vim-endwise";

View file

@ -4,7 +4,7 @@
pkgs,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "fugitive";
packPathName = "vim-fugitive";
package = "vim-fugitive";

View file

@ -6,7 +6,7 @@
with lib;
# We use `mkVimPlugin` to avoid having a `settings` option.
# Indeed, this plugin is not configurable in the common sense (no `setup` function).
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "gitignore";
packPathName = "gitignore.nvim";
package = "gitignore-nvim";

View file

@ -5,7 +5,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "godot";
packPathName = "vim-godot";
package = "vim-godot";

View file

@ -3,7 +3,7 @@
helpers,
...
}:
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
with lib;
mkVimPlugin {
name = "goyo";

View file

@ -5,7 +5,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "haskell-scope-highlighting";
packPathName = "haskell-scope-highlighting.nvim";
package = "haskell-scope-highlighting-nvim";

View file

@ -3,7 +3,7 @@
helpers,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "helm";
packPathName = "vim-helm";
package = "vim-helm";

View file

@ -6,7 +6,7 @@
with lib;
# This plugin is only configured through keymaps, so we use `mkVimPlugin` without the
# `globalPrefix` argument to avoid the creation of the `settings` option.
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "improved-search";
packPathName = "improved-search.nvim";
package = "improved-search-nvim";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "instant";
packPathName = "instant.nvim";

View file

@ -35,7 +35,7 @@ let
};
in
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "julia-cell";
packPathName = "vim-julia-cell";
package = "vim-julia-cell";

View file

@ -5,7 +5,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "ledger";
packPathName = "vim-ledger";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "magma-nvim";
packPathName = "magma-nvim";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "markdown-preview";
packPathName = "markdown-preview.nvim";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "molten";
packPathName = "molten-nvim";

View file

@ -3,7 +3,7 @@
helpers,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "nix";
packPathName = "vim-nix";
package = "vim-nix";

View file

@ -3,7 +3,7 @@
helpers,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "parinfer-rust";
globalPrefix = "parinfer_";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "sandwich";
packPathName = "vim-sandwich";
package = "vim-sandwich";

View file

@ -5,7 +5,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "schemastore";
packPathName = "SchemaStore.nvim";
package = "SchemaStore-nvim";

View file

@ -3,7 +3,7 @@
helpers,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "sleuth";
packPathName = "vim-sleuth";
package = "vim-sleuth";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "startify";
packPathName = "vim-startify";

View file

@ -4,7 +4,7 @@
lib,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "tagbar";
globalPrefix = "tagbar_";

View file

@ -7,7 +7,7 @@
with lib;
# This plugin has no configuration, so we use `mkVimPlugin` without the `globalPrefix` argument to
# avoid the creation of the `settings` option.
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "texpresso";
packPathName = "texpresso.vim";
package = "texpresso-vim";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "tmux-navigator";
packPathName = "vim-tmux-navigator";
package = "vim-tmux-navigator";

View file

@ -5,7 +5,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "typst-vim";
packPathName = "typst.vim";
globalPrefix = "typst_";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "undotree";
globalPrefix = "undotree_";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "vim-slime";
globalPrefix = "slime_";

View file

@ -3,7 +3,7 @@
helpers,
...
}:
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "vim-surround";
packPathName = "surround.vim";
package = "vim-surround";

View file

@ -5,7 +5,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "vimtex";
globalPrefix = "vimtex_";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
lib.nixvim.vim-plugin.mkVimPlugin {
name = "wakatime";
packPathName = "vim-wakatime";
package = "vim-wakatime";

View file

@ -4,7 +4,7 @@
...
}:
with lib;
with helpers.vim-plugin;
with lib.nixvim.vim-plugin;
mkVimPlugin {
name = "zig";
packPathName = "zig.vim";