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; with lib;
helpers.vim-plugin.mkVimPlugin { lib.nixvim.vim-plugin.mkVimPlugin {
name = "bufdelete"; name = "bufdelete";
packPathName = "bufdelete.nvim"; packPathName = "bufdelete.nvim";
package = "bufdelete-nvim"; package = "bufdelete-nvim";

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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