helpers/vim-plugin/mkVimPlugin: rename 'description' -> 'originalName'

This commit is contained in:
Gaetan Lepage 2024-02-13 23:25:13 +01:00 committed by Gaétan Lepage
parent 6dd2eed613
commit 6a8d6fd005
17 changed files with 18 additions and 22 deletions

View file

@ -9,7 +9,7 @@ with lib;
with helpers.vim-plugin;
mkVimPlugin config {
name = "ledger";
description = "ledger language features";
originalName = "vim-ledger";
package = pkgs.vimPlugins.vim-ledger;
globalPrefix = "ledger_";
addExtraConfigRenameWarning = true;

View file

@ -9,7 +9,7 @@ with lib;
with helpers.vim-plugin;
mkVimPlugin config {
name = "markdown-preview";
description = "markdown-preview.nvim";
originalName = "markdown-preview.nvim";
package = pkgs.vimPlugins.markdown-preview-nvim;
globalPrefix = "mkdp_";
addExtraConfigRenameWarning = true;

View file

@ -6,7 +6,7 @@
}:
helpers.vim-plugin.mkVimPlugin config {
name = "nix";
description = "vim-nix";
originalName = "vim-nix";
package = pkgs.vimPlugins.vim-nix;
# Possibly add option to disable Treesitter highlighting if this is installed

View file

@ -9,7 +9,7 @@ with lib;
with helpers.vim-plugin;
mkVimPlugin config {
name = "zig";
description = "zig.vim";
originalName = "zig.vim";
package = pkgs.vimPlugins.zig-vim;
globalPrefix = "zig_";
addExtraConfigRenameWarning = true;