lazy.nvim/README.md

69 lines
2.6 KiB
Markdown
Raw Normal View History

2022-11-26 21:31:29 +08:00
# lazy.nvim
2022-11-28 14:36:46 +08:00
## ✨ Features
2022-12-13 17:10:11 +08:00
## ✅ TODO
- [x] fancy UI to manage all your Neovim plugins
- [x] auto lazy-loading of lua modules
- [x] lazy-loading on events, commands, filetypes and key mappings
2022-11-29 07:15:13 +08:00
- [x] Partial clones instead of shallow clones
- [x] waits till missing deps are installed (bootstrap Neovim and start using it right away)
- [x] Async
2022-12-13 17:10:11 +08:00
- [x] No need to manually compile
- [x] Fast. Automatically caches and compiles byte code of all lua modules needed during startup
2022-11-29 07:15:13 +08:00
- [x] Correct sequencing of dependencies (deps should always be opt. Maybe make everything opt?)
- [x] Config in multiple files
2022-12-13 17:10:11 +08:00
- [x] dev option and patterns for local packages
2022-11-29 07:15:13 +08:00
- [x] Profiling
2022-12-13 17:10:11 +08:00
- [x] lockfile `lazy-lock.json`
2022-11-29 19:16:09 +08:00
- [x] upvalues in `config` & `init`
- [x] check for updates
2022-12-13 17:10:11 +08:00
- [x] commit, branch, tag, version support
- [x] semver https://devhints.io/semver
2022-11-29 07:15:13 +08:00
- [x] auto-loading on completion for lazy-loaded commands
2022-11-29 19:49:15 +08:00
- [x] bootstrap code
2022-12-13 17:10:11 +08:00
- [x] Background update checker
- [x] statusline component to see number of pending updates
- [x] health checks: check merge conflicts async
- [x] unsupported props or props from other managers
- [x] other packages still in site?
- [x] other package manager artifacts still present? compiled etc
- [x] status page showing running handlers and cache stats
- [x] temp colorscheme used during startup when installing missing plugins
- [x] automatically reloads when config changes are detected
- [x] handlers imply opt
- [x] dependencies imply opt for deps
- [ ] show spec errors in health
- [ ] fix plugin details
- [ ] show disabled plugins (strikethrough?)
2022-12-01 06:15:14 +08:00
- [ ] log file
- [ ] git tests
2022-12-02 16:25:25 +08:00
- [ ] Import specs from other plugin managers
2022-12-01 06:15:14 +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:25:25 +08:00
- [ ] package meta index (package.lua cache for all packages)
2022-11-29 22:25:09 +08:00
## 📦 Differences with Packer
- **Plugin Spec**:
- `setup` => `init`
- `requires` => `dependencies`
- `as` => `name`
2022-12-01 18:32:52 +08:00
- `opt` => `lazy`
- `run` => `build`
2022-12-02 16:25:25 +08:00
- `lock` => `pin`
- `module` is auto-loaded. No need to specify
2022-12-01 06:15:14 +08:00
## 📦 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:46:10 +08:00
- [pact.nvim](https://github.com/rktjmp/pact.nvim)