plugins: set myself (@GaetanLepage) as maintainer for several vim plugins

This commit is contained in:
Gaetan Lepage 2024-03-04 09:35:28 +01:00 committed by Gaétan Lepage
parent 8b0eba515d
commit f2de9a94c4
19 changed files with 43 additions and 1 deletions

View file

@ -14,6 +14,8 @@ with helpers.vim-plugin;
globalPrefix = "copilot_"; globalPrefix = "copilot_";
deprecateExtraConfig = true; deprecateExtraConfig = true;
maintainers = [maintainers.GaetanLepage];
options = { options = {
nodeCommand = mkDefaultOpt { nodeCommand = mkDefaultOpt {
global = "node_command"; global = "node_command";

View file

@ -16,6 +16,7 @@ with lib; {
mkVimPlugin config { mkVimPlugin config {
inherit name; inherit name;
extraPlugins = extraPlugins ++ (lists.optional useDefaultPackage pkgs.vimPlugins.${name}); extraPlugins = extraPlugins ++ (lists.optional useDefaultPackage pkgs.vimPlugins.${name});
maintainers = [maintainers.GaetanLepage];
}; };
pluginAndSourceNames = { pluginAndSourceNames = {

View file

@ -1,5 +1,6 @@
{ {
config, config,
lib,
helpers, helpers,
pkgs, pkgs,
... ...
@ -10,6 +11,8 @@ helpers.vim-plugin.mkVimPlugin config {
defaultPackage = pkgs.vimPlugins.vim-fugitive; defaultPackage = pkgs.vimPlugins.vim-fugitive;
extraPackages = [pkgs.git]; extraPackages = [pkgs.git];
maintainers = [lib.maintainers.GaetanLepage];
# In typical tpope fashion, this plugin has no config options # In typical tpope fashion, this plugin has no config options
options = {}; options = {};
} }

View file

@ -13,6 +13,8 @@ with helpers.vim-plugin;
defaultPackage = pkgs.vimPlugins.vim-ledger; defaultPackage = pkgs.vimPlugins.vim-ledger;
globalPrefix = "ledger_"; globalPrefix = "ledger_";
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-03-02: remove 2024-05-02 # TODO introduced 2024-03-02: remove 2024-05-02
deprecateExtraConfig = true; deprecateExtraConfig = true;
optionsRenamedToSettings = [ optionsRenamedToSettings = [

View file

@ -14,6 +14,8 @@ with helpers.vim-plugin;
globalPrefix = "mkdp_"; globalPrefix = "mkdp_";
deprecateExtraConfig = true; deprecateExtraConfig = true;
maintainers = [maintainers.GaetanLepage];
options = { options = {
autoStart = mkDefaultOpt { autoStart = mkDefaultOpt {
global = "auto_start"; global = "auto_start";

View file

@ -1,5 +1,6 @@
{ {
config, config,
lib,
helpers, helpers,
pkgs, pkgs,
... ...
@ -9,6 +10,8 @@ helpers.vim-plugin.mkVimPlugin config {
originalName = "vim-nix"; originalName = "vim-nix";
defaultPackage = pkgs.vimPlugins.vim-nix; defaultPackage = pkgs.vimPlugins.vim-nix;
maintainers = [lib.maintainers.GaetanLepage];
# Possibly add option to disable Treesitter highlighting if this is installed # Possibly add option to disable Treesitter highlighting if this is installed
options = {}; options = {};
} }

View file

@ -2,6 +2,7 @@
helpers, helpers,
config, config,
pkgs, pkgs,
lib,
... ...
}: }:
helpers.vim-plugin.mkVimPlugin config { helpers.vim-plugin.mkVimPlugin config {
@ -10,6 +11,8 @@ helpers.vim-plugin.mkVimPlugin config {
globalPrefix = "tagbar_"; globalPrefix = "tagbar_";
extraPackages = [pkgs.ctags]; extraPackages = [pkgs.ctags];
maintainers = [lib.maintainers.GaetanLepage];
# TODO introduced 2024-02-12: remove 2024-04-12 # TODO introduced 2024-02-12: remove 2024-04-12
deprecateExtraConfig = true; deprecateExtraConfig = true;

View file

@ -12,6 +12,8 @@ with helpers.vim-plugin;
defaultPackage = pkgs.vimPlugins.vim-slime; defaultPackage = pkgs.vimPlugins.vim-slime;
globalPrefix = "slime_"; globalPrefix = "slime_";
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-03-02: remove 2024-05-02 # TODO introduced 2024-03-02: remove 2024-05-02
deprecateExtraConfig = true; deprecateExtraConfig = true;
optionsRenamedToSettings = [ optionsRenamedToSettings = [

View file

@ -13,6 +13,8 @@ with helpers.vim-plugin;
defaultPackage = pkgs.vimPlugins.zig-vim; defaultPackage = pkgs.vimPlugins.zig-vim;
globalPrefix = "zig_"; globalPrefix = "zig_";
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-03-02: remove 2024-05-02 # TODO introduced 2024-03-02: remove 2024-05-02
deprecateExtraConfig = true; deprecateExtraConfig = true;
imports = [ imports = [

View file

@ -14,6 +14,8 @@ with helpers.vim-plugin;
globalPrefix = "airline_"; globalPrefix = "airline_";
deprecateExtraConfig = true; deprecateExtraConfig = true;
maintainers = [maintainers.GaetanLepage];
options = options =
( (
listToAttrs ( listToAttrs (

View file

@ -13,6 +13,8 @@ with helpers.vim-plugin;
defaultPackage = pkgs.vimPlugins.emmet-vim; defaultPackage = pkgs.vimPlugins.emmet-vim;
globalPrefix = "user_emmet_"; globalPrefix = "user_emmet_";
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-03-01: remove 2024-05-01 # TODO introduced 2024-03-01: remove 2024-05-01
deprecateExtraConfig = true; deprecateExtraConfig = true;
optionsRenamedToSettings = [ optionsRenamedToSettings = [

View file

@ -1,5 +1,6 @@
{ {
config, config,
lib,
pkgs, pkgs,
helpers, helpers,
... ...
@ -9,6 +10,8 @@ helpers.vim-plugin.mkVimPlugin config {
originalName = "vim-endwise"; originalName = "vim-endwise";
defaultPackage = pkgs.vimPlugins.vim-endwise; defaultPackage = pkgs.vimPlugins.vim-endwise;
maintainers = [lib.maintainers.GaetanLepage];
# Yes it's really not configurable # Yes it's really not configurable
options = {}; options = {};
} }

View file

@ -13,6 +13,8 @@ with lib;
defaultPackage = pkgs.vimPlugins.goyo-vim; defaultPackage = pkgs.vimPlugins.goyo-vim;
globalPrefix = "goyo_"; globalPrefix = "goyo_";
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-03-01: remove 2024-05-01 # TODO introduced 2024-03-01: remove 2024-05-01
deprecateExtraConfig = true; deprecateExtraConfig = true;
optionsRenamedToSettings = [ optionsRenamedToSettings = [

View file

@ -13,6 +13,8 @@ with helpers.vim-plugin;
defaultPackage = pkgs.vimPlugins.instant-nvim; defaultPackage = pkgs.vimPlugins.instant-nvim;
globalPrefix = "instant_"; globalPrefix = "instant_";
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-03-02: remove 2024-05-02 # TODO introduced 2024-03-02: remove 2024-05-02
deprecateExtraConfig = true; deprecateExtraConfig = true;
optionsRenamedToSettings = [ optionsRenamedToSettings = [

View file

@ -13,6 +13,8 @@ with helpers.vim-plugin;
defaultPackage = pkgs.vimPlugins.magma-nvim-goose; defaultPackage = pkgs.vimPlugins.magma-nvim-goose;
globalPrefix = "magma_"; globalPrefix = "magma_";
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-03-02: remove 2024-05-02 # TODO introduced 2024-03-02: remove 2024-05-02
deprecateExtraConfig = true; deprecateExtraConfig = true;
optionsRenamedToSettings = [ optionsRenamedToSettings = [

View file

@ -13,6 +13,8 @@ with helpers.vim-plugin;
defaultPackage = pkgs.vimPlugins.molten-nvim; defaultPackage = pkgs.vimPlugins.molten-nvim;
globalPrefix = "molten_"; globalPrefix = "molten_";
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-03-01: remove 2024-05-01 # TODO introduced 2024-03-01: remove 2024-05-01
deprecateExtraConfig = true; deprecateExtraConfig = true;
optionsRenamedToSettings = [ optionsRenamedToSettings = [

View file

@ -14,6 +14,8 @@ with helpers.vim-plugin;
globalPrefix = "startify_"; globalPrefix = "startify_";
deprecateExtraConfig = true; deprecateExtraConfig = true;
maintainers = [maintainers.GaetanLepage];
options = { options = {
sessionDir = mkDefaultOpt { sessionDir = mkDefaultOpt {
description = "Directory to save/load session"; description = "Directory to save/load session";

View file

@ -1,5 +1,6 @@
{ {
config, config,
lib,
helpers, helpers,
pkgs, pkgs,
... ...
@ -8,4 +9,6 @@ helpers.vim-plugin.mkVimPlugin config {
name = "surround"; name = "surround";
originalName = "surround.vim"; originalName = "surround.vim";
defaultPackage = pkgs.vimPlugins.surround; defaultPackage = pkgs.vimPlugins.surround;
maintainers = [lib.maintainers.GaetanLepage];
} }

View file

@ -11,9 +11,11 @@ with helpers.vim-plugin;
name = "undotree"; name = "undotree";
defaultPackage = pkgs.vimPlugins.undotree; defaultPackage = pkgs.vimPlugins.undotree;
globalPrefix = "undotree_"; globalPrefix = "undotree_";
deprecateExtraConfig = true;
maintainers = [maintainers.GaetanLepage];
# TODO introduced 2024-02-22: remove 2024-04-22 # TODO introduced 2024-02-22: remove 2024-04-22
deprecateExtraConfig = true;
imports = let imports = let
basePluginPath = ["plugins" "undotree"]; basePluginPath = ["plugins" "undotree"];
in in