-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: lazy.nvim users no longer need to specify dependencies (#144)
As of lazy.nvim 11, packages can now specify their own dependencies and configuration. This means that users of lazy.nvim no longer need to specify plenary.nvim as a dependency. If any dependencies are added in the future, they will be automatically installed by lazy.nvim. This is a backwards-compatible change. <https://lazy.folke.io/news#11x>
- Loading branch information
1 parent
165bd73
commit e6fe720
Showing
4 changed files
with
46 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
-- This file is used to define the dependencies of this plugin when the user is | ||
-- using lazy.nvim. | ||
-- | ||
--https://lazy.folke.io/packages#lazy | ||
|
||
---@module "lazy" | ||
---@module "yazi" | ||
|
||
---@type LazySpec | ||
return { | ||
{ 'nvim-lua/plenary.nvim', lazy = true }, | ||
{ | ||
'mikavilpas/yazi.nvim', | ||
---@type YaziConfig | ||
opts = {}, | ||
}, | ||
} |