lazy.nvim/doc/lazy.nvim.txt

90 lines
3.6 KiB
Plaintext
Raw Normal View History

2022-12-13 17:30:42 +08:00
*lazy.nvim.txt* For NVIM v0.5.0 Last change: 2022 December 13
2022-11-29 22:42:57 +08:00
==============================================================================
Table of Contents *lazy.nvim-table-of-contents*
1. lazy.nvim |lazy.nvim-lazy.nvim|
- Features |lazy.nvim-features|
- TODO |lazy.nvim-todo|
- Differences with Packer |lazy.nvim-differences-with-packer|
2022-12-01 06:16:15 +08:00
- Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua|
2022-11-29 22:42:57 +08:00
==============================================================================
1. lazy.nvim *lazy.nvim-lazy.nvim*
FEATURES *lazy.nvim-features*
2022-12-13 17:30:42 +08:00
TODO *lazy.nvim-todo*
2022-11-29 22:42:57 +08:00
2022-12-13 17:30:42 +08:00
- fancy UI to manage all your Neovim plugins
- auto lazy-loading of lua modules
- lazy-loading on events, commands, filetypes and key mappings
2022-11-29 22:42:57 +08:00
- Partial clones instead of shallow clones
- waits till missing deps are installed (bootstrap Neovim and start using it right away)
- Async
2022-12-13 17:30:42 +08:00
- No need to manually compile
- Fast. Automatically caches and compiles byte code of all lua modules needed during startup
2022-11-29 22:42:57 +08:00
- Correct sequencing of dependencies (deps should always be opt. Maybe make everything opt?)
- Config in multiple files
2022-12-13 17:30:42 +08:00
- dev option and patterns for local packages
2022-11-29 22:42:57 +08:00
- Profiling
2022-12-13 17:30:42 +08:00
- lockfile `lazy-lock.json`
2022-11-29 22:42:57 +08:00
- upvalues in `config` & `init`
- check for updates
2022-12-13 17:30:42 +08:00
- commit, branch, tag, version support
- semver https://devhints.io/semver
2022-11-29 22:42:57 +08:00
- auto-loading on completion for lazy-loaded commands
- bootstrap code
2022-12-13 17:30:42 +08:00
- Background update checker
- statusline component to see number of pending updates
- health checks: check merge conflicts async
- unsupported props or props from other managers
- other packages still in site?
- other package manager artifacts still present? compiled etc
- status page showing running handlers and cache stats
- temp colorscheme used during startup when installing missing plugins
- automatically reloads when config changes are detected
- handlers imply opt
- dependencies imply opt for deps
- show spec errors in health
2022-12-04 06:47:38 +08:00
- fix plugin details
- show disabled plugins (strikethrough?)
2022-12-01 06:16:15 +08:00
- log file
- git tests
2022-12-02 16:26:19 +08:00
- Import specs from other plugin managers
2022-12-01 06:16:15 +08:00
- packspec <https://github.com/nvim-lua/nvim-package-specification>
- add support to specify `engines`, `os` and `cpu` like in `package.json`
- semver merging. Should check if two or more semver ranges are compatible and calculate the union range
- default semver merging strategy: if no version matches all, then use highest version?
2022-12-02 16:26:19 +08:00
- package meta index (package.lua cache for all packages)
2022-11-29 22:42:57 +08:00
DIFFERENCES WITH PACKER *lazy.nvim-differences-with-packer*
- **Plugin Spec**:
- `setup` => `init`
- `requires` => `dependencies`
- `as` => `name`
2022-12-01 18:33:48 +08:00
- `opt` => `lazy`
2022-12-01 20:34:59 +08:00
- `run` => `build`
2022-12-02 16:26:19 +08:00
- `lock` => `pin`
- `module` is auto-loaded. No need to specify
2022-11-29 22:42:57 +08:00
2022-12-01 06:16:15 +08:00
OTHER NEOVIM PLUGIN MANAGERS IN LUA*lazy.nvim-other-neovim-plugin-managers-in-lua*
- packer.nvim <https://github.com/wbthomason/packer.nvim>
- paq-nvim <https://github.com/savq/paq-nvim>
- neopm <https://github.com/ii14/neopm>
- dep <https://github.com/chiyadev/dep>
- optpack.nvim <https://github.com/notomo/optpack.nvim>
2022-12-04 00:47:26 +08:00
- pact.nvim <https://github.com/rktjmp/pact.nvim>
2022-12-01 06:16:15 +08:00
2022-11-29 22:42:57 +08:00
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
vim:tw=78:ts=8:noet:ft=help:norl: