|
2 | 2 |
|
3 | 3 | ## ✨ Features
|
4 | 4 |
|
5 |
| -- Partial clones instead of shallow clones |
6 |
| -- Async |
7 |
| -- No need for compile |
8 |
| -- Fast |
9 |
| -- Correct sequencing of dependencies (deps should always be opt. Maybe make everything opt?) |
| 5 | +- [x] Partial clones instead of shallow clones |
| 6 | +- [x] waits till missing deps are installed (bootstrap Neovim and start using it right away) |
| 7 | +- [x] Async |
| 8 | +- [x] No need for compile |
| 9 | +- [x] Fast |
| 10 | +- [x] Correct sequencing of dependencies (deps should always be opt. Maybe make everything opt?) |
10 | 11 | - [ ] Import specs from Packer
|
11 |
| -- Config in multiple files |
12 |
| -- Patterns for local packages |
| 12 | +- [x] Config in multiple files |
| 13 | +- [x] Patterns for local packages |
| 14 | +- [x] Profiling |
13 | 15 | - [ ] lockfile
|
| 16 | +- [ ] check for updates |
14 | 17 | - [ ] package.lua
|
15 | 18 | - [ ] package-lock.lua
|
16 |
| -- [ ] tag/version support `git tag --sort version:refname` |
17 |
| -- [ ] auto-loading on completion for lazy-loaded commands |
18 |
| -- [ ] semver https://devhints.io/semver |
| 19 | +- [x] tag/version support `git tag --sort version:refname` |
| 20 | +- [x] auto-loading on completion for lazy-loaded commands |
| 21 | +- [x] semver https://devhints.io/semver |
19 | 22 | https://semver.npmjs.com/
|
20 | 23 |
|
21 | 24 | ## ✅ TODO
|
22 | 25 |
|
23 |
| -- [ ] show time taken for op in view |
| 26 | +- [ ] view keybindings for update/clean/... |
| 27 | +- [ ] add profiler to view |
| 28 | +- [ ] add buttons for actions |
| 29 | +- [x] show time taken for op in view |
24 | 30 | - [ ] package meta index (package.lua cache for all packages)
|
25 | 31 | - [ ] migrate from Packer
|
26 | 32 | - [ ] auto lazy-loading of lua modules
|
27 | 33 | - [ ] use uv file watcher to check for config changes
|
28 | 34 | - [x] clear errors
|
29 |
| -- [ ] add support for versions `git tag --sort v:refname` |
| 35 | +- [x] add support for versions `git tag --sort v:refname` |
30 | 36 | - [ ] rename requires to deps
|
31 |
| -- [ ] move tasks etc to Plugin.state |
32 |
| - - loaded |
33 |
| - - installed |
34 |
| - - updated |
35 |
| - - changed: just installed or updated (dirty) |
36 |
| - - is_local |
37 |
| - https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/ |
38 |
| - |
39 |
| -## 🖥️ Git Operations |
40 |
| - |
41 |
| -1. **install**: |
42 |
| - |
43 |
| - - run `git clone` with given `branch`,`--single-branch`, `filter=blob:none` |
44 |
| - and `--no-checkout` |
45 |
| - - run `git checkout` with correct `branch`, `tag` or `commit` |
46 |
| - |
47 |
| -2. **update**: |
48 |
| - |
49 |
| - - if branch is missing `git remote set-branches --add origin MISSING_BRANCH` |
50 |
| - - `git switch MISSING_BRANCH` |
51 |
| - - run `git fetch` |
52 |
| - - run `git checkout` with correct `branch`, `tag` or `commit` |
| 37 | +- [x] move tasks etc to Plugin.state |
| 38 | +- [ ] allow setting up plugins through config |
0 commit comments