mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 10:48:35 +02:00
plugins: set myself (@GaetanLepage) as maintainer for several vim plugins
This commit is contained in:
parent
8b0eba515d
commit
f2de9a94c4
19 changed files with 43 additions and 1 deletions
|
@ -13,6 +13,8 @@ with helpers.vim-plugin;
|
|||
defaultPackage = pkgs.vimPlugins.emmet-vim;
|
||||
globalPrefix = "user_emmet_";
|
||||
|
||||
maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
# TODO introduced 2024-03-01: remove 2024-05-01
|
||||
deprecateExtraConfig = true;
|
||||
optionsRenamedToSettings = [
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
helpers,
|
||||
...
|
||||
|
@ -9,6 +10,8 @@ helpers.vim-plugin.mkVimPlugin config {
|
|||
originalName = "vim-endwise";
|
||||
defaultPackage = pkgs.vimPlugins.vim-endwise;
|
||||
|
||||
maintainers = [lib.maintainers.GaetanLepage];
|
||||
|
||||
# Yes it's really not configurable
|
||||
options = {};
|
||||
}
|
||||
|
|
|
@ -13,6 +13,8 @@ with lib;
|
|||
defaultPackage = pkgs.vimPlugins.goyo-vim;
|
||||
globalPrefix = "goyo_";
|
||||
|
||||
maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
# TODO introduced 2024-03-01: remove 2024-05-01
|
||||
deprecateExtraConfig = true;
|
||||
optionsRenamedToSettings = [
|
||||
|
|
|
@ -13,6 +13,8 @@ with helpers.vim-plugin;
|
|||
defaultPackage = pkgs.vimPlugins.instant-nvim;
|
||||
globalPrefix = "instant_";
|
||||
|
||||
maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
# TODO introduced 2024-03-02: remove 2024-05-02
|
||||
deprecateExtraConfig = true;
|
||||
optionsRenamedToSettings = [
|
||||
|
|
|
@ -13,6 +13,8 @@ with helpers.vim-plugin;
|
|||
defaultPackage = pkgs.vimPlugins.magma-nvim-goose;
|
||||
globalPrefix = "magma_";
|
||||
|
||||
maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
# TODO introduced 2024-03-02: remove 2024-05-02
|
||||
deprecateExtraConfig = true;
|
||||
optionsRenamedToSettings = [
|
||||
|
|
|
@ -13,6 +13,8 @@ with helpers.vim-plugin;
|
|||
defaultPackage = pkgs.vimPlugins.molten-nvim;
|
||||
globalPrefix = "molten_";
|
||||
|
||||
maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
# TODO introduced 2024-03-01: remove 2024-05-01
|
||||
deprecateExtraConfig = true;
|
||||
optionsRenamedToSettings = [
|
||||
|
|
|
@ -14,6 +14,8 @@ with helpers.vim-plugin;
|
|||
globalPrefix = "startify_";
|
||||
deprecateExtraConfig = true;
|
||||
|
||||
maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
options = {
|
||||
sessionDir = mkDefaultOpt {
|
||||
description = "Directory to save/load session";
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
helpers,
|
||||
pkgs,
|
||||
...
|
||||
|
@ -8,4 +9,6 @@ helpers.vim-plugin.mkVimPlugin config {
|
|||
name = "surround";
|
||||
originalName = "surround.vim";
|
||||
defaultPackage = pkgs.vimPlugins.surround;
|
||||
|
||||
maintainers = [lib.maintainers.GaetanLepage];
|
||||
}
|
||||
|
|
|
@ -11,9 +11,11 @@ with helpers.vim-plugin;
|
|||
name = "undotree";
|
||||
defaultPackage = pkgs.vimPlugins.undotree;
|
||||
globalPrefix = "undotree_";
|
||||
deprecateExtraConfig = true;
|
||||
|
||||
maintainers = [maintainers.GaetanLepage];
|
||||
|
||||
# TODO introduced 2024-02-22: remove 2024-04-22
|
||||
deprecateExtraConfig = true;
|
||||
imports = let
|
||||
basePluginPath = ["plugins" "undotree"];
|
||||
in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue