From 327ac45d579fd810b1e9d35ce92b4652756576ce Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sun, 23 Jun 2024 16:03:38 +0200 Subject: [PATCH] docs: lazy.lua --- docs/packages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/packages.md b/docs/packages.md index 7675802..66103eb 100644 --- a/docs/packages.md +++ b/docs/packages.md @@ -5,7 +5,7 @@ sidebar_position: 4 **lazy.nvim** supports three ways for plugins to define their dependencies and configuration. -- **Lazy**: `.lazy.lua` file +- **Lazy**: `lazy.lua` file - **Rockspec**: [luarocks](https://luarocks.org/) `*-scm-1.rockspec` [file](https://github.com/luarocks/luarocks/wiki/Rockspec-format) - **Packspec**: `pkg.json` (experimental, since the [format](https://github.com/neovim/packspec/issues/41) is not quite there yet) @@ -21,7 +21,7 @@ so that when the plugin is disabled, none of the specs are loaded. ## Lazy -Using a `.lazy.lua` file is the recommended way to define your plugin dependencies and configuration. +Using a `lazy.lua` file is the recommended way to define your plugin dependencies and configuration. Syntax is the same as any plugin spec. ## Rockspec