mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-31 08:05:23 +02:00
plugins: migrate defaultPackage
-> package
Migrate all users of `mkVimPlugin` and `mkNeovimPlugin` to use the new `package` argument instead of the old `defaultPackage` argument.
This commit is contained in:
parent
285f6cbd7b
commit
1fd4b6c739
148 changed files with 126 additions and 277 deletions
|
@ -3,7 +3,6 @@
|
|||
helpers,
|
||||
config,
|
||||
options,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
|
@ -11,7 +10,7 @@ helpers.neovim-plugin.mkNeovimPlugin {
|
|||
name = "none-ls";
|
||||
originalName = "none-ls.nvim";
|
||||
luaName = "null-ls";
|
||||
defaultPackage = pkgs.vimPlugins.none-ls-nvim;
|
||||
package = "none-ls-nvim";
|
||||
|
||||
maintainers = [ maintainers.MattSturgeon ];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue