helpers/vim-plugin: mkPlugin -> mkVimPlugin

This commit is contained in:
Gaetan Lepage 2024-01-25 14:32:49 +01:00 committed by Gaétan Lepage
parent 8f90372ee5
commit a68ee73947
21 changed files with 21 additions and 21 deletions

View file

@ -5,7 +5,7 @@
} @ args:
with lib;
with (import ../helpers.nix {inherit lib;}).vim-plugin;
mkPlugin args {
mkVimPlugin args {
name = "ledger";
description = "ledger language features";
package = pkgs.vimPlugins.vim-ledger;

View file

@ -6,7 +6,7 @@
} @ args:
with lib;
with (import ../helpers.nix {inherit lib;}).vim-plugin;
mkPlugin args {
mkVimPlugin args {
name = "markdown-preview";
description = "markdown-preview.nvim";
package = pkgs.vimPlugins.markdown-preview-nvim;

View file

@ -7,7 +7,7 @@
in
with helpers.vim-plugin;
with lib;
mkPlugin attrs {
mkVimPlugin attrs {
name = "nix";
description = "Enable nix";
package = pkgs.vimPlugins.vim-nix;

View file

@ -5,7 +5,7 @@
} @ args:
with lib;
with (import ../helpers.nix {inherit lib;}).vim-plugin;
mkPlugin args {
mkVimPlugin args {
name = "tagbar";
package = pkgs.vimPlugins.tagbar;
globalPrefix = "tagbar_";

View file

@ -7,7 +7,7 @@
in
with lib;
with helpers.vim-plugin;
mkPlugin args {
mkVimPlugin args {
name = "vim-slime";
package = pkgs.vimPlugins.vim-slime;
globalPrefix = "slime_";

View file

@ -7,7 +7,7 @@
in
with helpers.vim-plugin;
with lib;
mkPlugin attrs {
mkVimPlugin attrs {
name = "zig";
description = "Enable zig";
package = pkgs.vimPlugins.zig-vim;