treewide: vim-plugin -> plugins

This commit is contained in:
Matt Sturgeon 2024-12-22 09:58:27 +00:00
parent 5e9a6c00a9
commit 43a3171dec
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
71 changed files with 72 additions and 72 deletions

View file

@ -41,7 +41,7 @@ To add a new plugin you need to do the following.
2. The vast majority of plugins fall into one of those two categories: 2. The vast majority of plugins fall into one of those two categories:
- _vim plugins_: They are configured through **global variables** (`g:plugin_foo_option` in vimscript and `vim.g.plugin_foo_option` in lua).\ - _vim plugins_: They are configured through **global variables** (`g:plugin_foo_option` in vimscript and `vim.g.plugin_foo_option` in lua).\
For those, you should use the `lib.nixvim.vim-plugin.mkVimPlugin`.\ For those, you should use the `lib.nixvim.plugins.mkVimPlugin`.\
-> See [this plugin](plugins/utils/direnv.nix) for an example. -> See [this plugin](plugins/utils/direnv.nix) for an example.
- _neovim plugins_: They are configured through a `setup` function (`require('plugin').setup({opts})`).\ - _neovim plugins_: They are configured through a `setup` function (`require('plugin').setup({opts})`).\
For those, you should use the `lib.nixvim.plugins.mkNeovimPlugin`.\ For those, you should use the `lib.nixvim.plugins.mkNeovimPlugin`.\

View file

@ -5,7 +5,7 @@
let let
inherit (lib.nixvim) defaultNullOpts mkNullOrOption; inherit (lib.nixvim) defaultNullOpts mkNullOrOption;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "airline"; name = "airline";
packPathName = "vim-airline"; packPathName = "vim-airline";
package = "vim-airline"; package = "vim-airline";

View file

@ -5,7 +5,7 @@
let let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "autosource"; name = "autosource";
packPathName = "vim-autosource"; packPathName = "vim-autosource";
package = "vim-autosource"; package = "vim-autosource";

View file

@ -4,7 +4,7 @@
... ...
}: }:
with lib; with lib;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "commentary"; name = "commentary";
packPathName = "vim-commentary"; packPathName = "vim-commentary";
package = "vim-commentary"; package = "vim-commentary";

View file

@ -6,7 +6,7 @@
let let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "committia"; name = "committia";
packPathName = "committia.vim"; packPathName = "committia.vim";
package = "committia-vim"; package = "committia-vim";

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "conjure"; name = "conjure";
maintainers = [ lib.maintainers.GaetanLepage ]; maintainers = [ lib.maintainers.GaetanLepage ];

View file

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

View file

@ -6,7 +6,7 @@
let let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "direnv"; name = "direnv";
packPathName = "direnv.vim"; packPathName = "direnv.vim";
package = "direnv-vim"; package = "direnv-vim";

View file

@ -1,5 +1,5 @@
{ lib, ... }: { lib, ... }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "earthly"; name = "earthly";
packPathName = "earthly.vim"; packPathName = "earthly.vim";
package = "earthly-vim"; package = "earthly-vim";

View file

@ -6,7 +6,7 @@ let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
inherit (lib) types; inherit (lib) types;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "easyescape"; name = "easyescape";
packPathName = "vim-easyescape"; packPathName = "vim-easyescape";
package = "vim-easyescape"; package = "vim-easyescape";

View file

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

View file

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

View file

@ -6,7 +6,7 @@ let
inherit (lib.nixvim) defaultNullOpts mkNullOrStr; inherit (lib.nixvim) defaultNullOpts mkNullOrStr;
inherit (lib) types; inherit (lib) types;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "floaterm"; name = "floaterm";
packPathName = "vim-floaterm"; packPathName = "vim-floaterm";
package = "vim-floaterm"; package = "vim-floaterm";

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "friendly-snippets"; name = "friendly-snippets";
maintainers = [ lib.maintainers.GaetanLepage ]; maintainers = [ lib.maintainers.GaetanLepage ];

View file

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

View file

@ -7,7 +7,7 @@ let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
inherit (lib) types; inherit (lib) types;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "gitgutter"; name = "gitgutter";
packPathName = "vim-gitgutter"; packPathName = "vim-gitgutter";
package = "vim-gitgutter"; package = "vim-gitgutter";

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).
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "gitignore"; name = "gitignore";
packPathName = "gitignore.nvim"; packPathName = "gitignore.nvim";
package = "gitignore-nvim"; package = "gitignore-nvim";

View file

@ -7,7 +7,7 @@ let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
inherit (lib) types; inherit (lib) types;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "gitmessenger"; name = "gitmessenger";
packPathName = "git-messenger.vim"; packPathName = "git-messenger.vim";
package = "git-messenger-vim"; package = "git-messenger-vim";

View file

@ -5,7 +5,7 @@
... ...
}: }:
with lib; with lib;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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 lib.nixvim.vim-plugin; with lib.nixvim.plugins;
with lib; with lib;
mkVimPlugin { mkVimPlugin {
name = "goyo"; name = "goyo";

View file

@ -5,7 +5,7 @@
... ...
}: }:
with lib; with lib;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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.
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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 lib.nixvim.vim-plugin; with lib.nixvim.plugins;
mkVimPlugin { mkVimPlugin {
name = "instant"; name = "instant";
packPathName = "instant.nvim"; packPathName = "instant.nvim";

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "intellitab"; name = "intellitab";
packPathName = "intellitab.nvim"; packPathName = "intellitab.nvim";
package = "intellitab-nvim"; package = "intellitab-nvim";

View file

@ -35,7 +35,7 @@ let
}; };
in in
with lib; with lib;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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

@ -7,7 +7,7 @@ let
inherit (lib) types; inherit (lib) types;
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "lazygit"; name = "lazygit";
packPathName = "lazygit.nvim"; packPathName = "lazygit.nvim";
package = "lazygit-nvim"; package = "lazygit-nvim";

View file

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

View file

@ -4,7 +4,7 @@
... ...
}: }:
with lib; with lib;
with lib.nixvim.vim-plugin; with lib.nixvim.plugins;
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 lib.nixvim.vim-plugin; with lib.nixvim.plugins;
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 lib.nixvim.vim-plugin; with lib.nixvim.plugins;
mkVimPlugin { mkVimPlugin {
name = "molten"; name = "molten";
packPathName = "molten-nvim"; packPathName = "molten-nvim";

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "nabla"; name = "nabla";
packPathName = "nabla.nvim"; packPathName = "nabla.nvim";
package = "nabla-nvim"; package = "nabla-nvim";

View file

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

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "numbertoggle"; name = "numbertoggle";
packPathName = "vim-numbertoggle"; packPathName = "vim-numbertoggle";
package = "vim-numbertoggle"; package = "vim-numbertoggle";

View file

@ -7,7 +7,7 @@
let let
inherit (lib) types; inherit (lib) types;
inherit (lib.nixvim) defaultNullOpts applyPrefixToAttrs; inherit (lib.nixvim) defaultNullOpts applyPrefixToAttrs;
inherit (lib.nixvim.vim-plugin) mkSettingsOptionDescription; inherit (lib.nixvim.plugins.vim) mkSettingsOptionDescription;
name = "openscad"; name = "openscad";
globalPrefix = "openscad_"; globalPrefix = "openscad_";

View file

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

View file

@ -6,7 +6,7 @@
let let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "plantuml-syntax"; name = "plantuml-syntax";
globalPrefix = "plantuml_"; globalPrefix = "plantuml_";

View file

@ -5,7 +5,7 @@
let let
inherit (lib) types; inherit (lib) types;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "quickmath"; name = "quickmath";
packPathName = "quickmath.nvim"; packPathName = "quickmath.nvim";
package = "quickmath-nvim"; package = "quickmath-nvim";

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "repeat"; name = "repeat";
packPathName = "vim-repeat"; packPathName = "vim-repeat";
package = "vim-repeat"; package = "vim-repeat";

View file

@ -4,7 +4,7 @@
... ...
}: }:
with lib; with lib;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "schemastore"; name = "schemastore";
packPathName = "SchemaStore.nvim"; packPathName = "SchemaStore.nvim";
package = "SchemaStore-nvim"; package = "SchemaStore-nvim";

View file

@ -3,7 +3,7 @@ let
inherit (lib.nixvim) defaultNullOpts mkNullOrStr mkNullOrOption; inherit (lib.nixvim) defaultNullOpts mkNullOrStr mkNullOrOption;
inherit (lib) types; inherit (lib) types;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "scrollview"; name = "scrollview";
packPathName = "nvim-scrollview"; packPathName = "nvim-scrollview";
package = "nvim-scrollview"; package = "nvim-scrollview";

View file

@ -3,7 +3,7 @@
helpers, helpers,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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 lib.nixvim.vim-plugin; with lib.nixvim.plugins;
mkVimPlugin { mkVimPlugin {
name = "startify"; name = "startify";
packPathName = "vim-startify"; packPathName = "vim-startify";

View file

@ -4,7 +4,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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.
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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 lib.nixvim.vim-plugin; with lib.nixvim.plugins;
mkVimPlugin { mkVimPlugin {
name = "undotree"; name = "undotree";
globalPrefix = "undotree_"; globalPrefix = "undotree_";

View file

@ -6,7 +6,7 @@ let
inherit (lib.nixvim) mkNullOrOption; inherit (lib.nixvim) mkNullOrOption;
inherit (lib) types; inherit (lib) types;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vim-bbye"; name = "vim-bbye";
maintainers = [ lib.maintainers.GaetanLepage ]; maintainers = [ lib.maintainers.GaetanLepage ];

View file

@ -1,5 +1,5 @@
{ lib, ... }: { lib, ... }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vim-colemak"; name = "vim-colemak";
maintainers = [ lib.maintainers.kalbasit ]; maintainers = [ lib.maintainers.kalbasit ];
} }

View file

@ -1,5 +1,5 @@
{ lib, ... }: { lib, ... }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vim-css-color"; name = "vim-css-color";
maintainers = [ lib.maintainers.DanielLaing ]; maintainers = [ lib.maintainers.DanielLaing ];
} }

View file

@ -1,5 +1,5 @@
{ lib, ... }: { lib, ... }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vim-dadbod-completion"; name = "vim-dadbod-completion";
maintainers = [ lib.maintainers.BoneyPatel ]; maintainers = [ lib.maintainers.BoneyPatel ];
imports = [ imports = [

View file

@ -1,5 +1,5 @@
{ lib, ... }: { lib, ... }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vim-dadbod-ui"; name = "vim-dadbod-ui";
maintainers = [ lib.maintainers.BoneyPatel ]; maintainers = [ lib.maintainers.BoneyPatel ];
} }

View file

@ -1,5 +1,5 @@
{ lib, ... }: { lib, ... }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vim-dadbod"; name = "vim-dadbod";
maintainers = [ lib.maintainers.BoneyPatel ]; maintainers = [ lib.maintainers.BoneyPatel ];
} }

View file

@ -7,7 +7,7 @@ let
inherit (lib.nixvim) defaultNullOpts mkNullOrStr'; inherit (lib.nixvim) defaultNullOpts mkNullOrStr';
inherit (lib) types; inherit (lib) types;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vim-matchup"; name = "vim-matchup";
globalPrefix = "matchup_"; globalPrefix = "matchup_";

View file

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

View file

@ -1,6 +1,6 @@
{ lib, helpers, ... }: { lib, helpers, ... }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vim-suda"; name = "vim-suda";
globalPrefix = "suda#"; globalPrefix = "suda#";
maintainers = [ lib.maintainers.marcel ]; maintainers = [ lib.maintainers.marcel ];

View file

@ -3,7 +3,7 @@
helpers, helpers,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "vimtex"; name = "vimtex";
globalPrefix = "vimtex_"; globalPrefix = "vimtex_";

View file

@ -4,7 +4,7 @@
... ...
}: }:
with lib; with lib;
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.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 lib.nixvim.vim-plugin; with lib.nixvim.plugins;
mkVimPlugin { mkVimPlugin {
name = "zig"; name = "zig";
packPathName = "zig.vim"; packPathName = "zig.vim";

View file

@ -14,7 +14,7 @@
imports ? [ ], imports ? [ ],
... ...
}@args: }@args:
lib.nixvim.vim-plugin.mkVimPlugin ( lib.nixvim.plugins.mkVimPlugin (
builtins.removeAttrs args [ builtins.removeAttrs args [
"pluginName" "pluginName"
"sourceName" "sourceName"

View file

@ -5,7 +5,7 @@
let let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "dracula"; name = "dracula";
package = "dracula-vim"; package = "dracula-vim";
isColorscheme = true; isColorscheme = true;

View file

@ -5,7 +5,7 @@
let let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "everforest"; name = "everforest";
isColorscheme = true; isColorscheme = true;
globalPrefix = "everforest_"; globalPrefix = "everforest_";

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "melange"; name = "melange";
isColorscheme = true; isColorscheme = true;
packPathName = "melange-nvim"; packPathName = "melange-nvim";

View file

@ -5,7 +5,7 @@
let let
inherit (lib.nixvim) defaultNullOpts; inherit (lib.nixvim) defaultNullOpts;
in in
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "nord"; name = "nord";
isColorscheme = true; isColorscheme = true;
packPathName = "nord.nvim"; packPathName = "nord.nvim";

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "one"; name = "one";
isColorscheme = true; isColorscheme = true;
packPathName = "vim-one"; packPathName = "vim-one";

View file

@ -2,7 +2,7 @@
lib, lib,
... ...
}: }:
lib.nixvim.vim-plugin.mkVimPlugin { lib.nixvim.plugins.mkVimPlugin {
name = "oxocarbon"; name = "oxocarbon";
isColorscheme = true; isColorscheme = true;
packPathName = "oxocarbon.nvim"; packPathName = "oxocarbon.nvim";